mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
build, add ASAN, some CFLAGS changes, add revision
This commit is contained in:
parent
83a9e30508
commit
3a77090514
5 changed files with 34 additions and 20 deletions
|
@ -35,7 +35,9 @@
|
|||
#endif
|
||||
|
||||
// FIXME
|
||||
#ifndef REVISION
|
||||
#define REVISION "0"
|
||||
#endif
|
||||
|
||||
static const char *rom_exts[] = {
|
||||
"zip", "bin",
|
||||
|
|
|
@ -1 +1 @@
|
|||
#define VERSION "1.99"
|
||||
#define VERSION "1.99" REVISION
|
||||
|
|
|
@ -670,12 +670,7 @@ void retro_get_system_info(struct retro_system_info *info)
|
|||
{
|
||||
memset(info, 0, sizeof(*info));
|
||||
info->library_name = "PicoDrive";
|
||||
#ifndef GIT_VERSION
|
||||
#define _GIT_VERSION ""
|
||||
#else
|
||||
#define _GIT_VERSION "-" GIT_VERSION
|
||||
#endif
|
||||
info->library_version = VERSION _GIT_VERSION;
|
||||
info->library_version = VERSION;
|
||||
info->valid_extensions = "bin|gen|smd|md|32x|cue|iso|chd|sms|gg|sg|sc|m3u|68k|sgd|pco";
|
||||
info->need_fullpath = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue