mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
libretro, fix version string
This commit is contained in:
parent
5d900cc4fd
commit
7e382f5403
1 changed files with 4 additions and 3 deletions
|
@ -62,7 +62,6 @@ static int ctr_svchack_successful = 0;
|
||||||
static int sceBlock;
|
static int sceBlock;
|
||||||
int getVMBlock();
|
int getVMBlock();
|
||||||
int _newlib_vm_size_user = 1 << TARGET_SIZE_2;
|
int _newlib_vm_size_user = 1 << TARGET_SIZE_2;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "libretro_core_options.h"
|
#include "libretro_core_options.h"
|
||||||
|
@ -697,9 +696,11 @@ void retro_get_system_info(struct retro_system_info *info)
|
||||||
memset(info, 0, sizeof(*info));
|
memset(info, 0, sizeof(*info));
|
||||||
info->library_name = "PicoDrive";
|
info->library_name = "PicoDrive";
|
||||||
#ifndef GIT_VERSION
|
#ifndef GIT_VERSION
|
||||||
#define GIT_VERSION ""
|
#define _GIT_VERSION ""
|
||||||
|
#else
|
||||||
|
#define _GIT_VERSION "-" GIT_VERSION
|
||||||
#endif
|
#endif
|
||||||
info->library_version = VERSION GIT_VERSION;
|
info->library_version = VERSION _GIT_VERSION;
|
||||||
info->valid_extensions = "bin|gen|smd|md|32x|cue|iso|sms";
|
info->valid_extensions = "bin|gen|smd|md|32x|cue|iso|sms";
|
||||||
info->need_fullpath = true;
|
info->need_fullpath = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue