mirror of
https://github.com/0ldsk00l/nestopia.git
synced 2025-04-02 10:31:51 -04:00
Set correct version number.
This commit is contained in:
parent
a19f63c7eb
commit
0663c13b49
1 changed files with 3 additions and 1 deletions
|
@ -13,6 +13,8 @@
|
|||
#include <core/api/NstApiInput.hpp>
|
||||
#include <core/api/NstApiCartridge.hpp>
|
||||
|
||||
#define NST_VERSION "1.43"
|
||||
|
||||
using namespace Nes;
|
||||
|
||||
static uint32_t video_buffer[Api::Video::Output::WIDTH * Api::Video::Output::HEIGHT];
|
||||
|
@ -57,7 +59,7 @@ void retro_get_system_info(struct retro_system_info *info)
|
|||
{
|
||||
memset(info, 0, sizeof(*info));
|
||||
info->library_name = "Nestopia";
|
||||
info->library_version = "v1";
|
||||
info->library_version = "v" NST_VERSION;
|
||||
info->need_fullpath = false;
|
||||
info->valid_extensions = "nes|NES"; // Anything is fine, we don't care.
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue