mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-20 22:33:22 +02:00
Attempt to fix Vita build - GIT_VERSION seems not defined for
whatever reason there
This commit is contained in:
@@ -631,7 +631,11 @@ void retro_get_system_info(struct retro_system_info* info)
|
||||
{
|
||||
memset(info, 0, sizeof(*info));
|
||||
info->library_name = "Atari800";
|
||||
#ifdef GIT_VERSION
|
||||
info->library_version = "3.1.0" GIT_VERSION;
|
||||
#else
|
||||
info->library_version = "3.1.0";
|
||||
#endif
|
||||
info->valid_extensions = "xfd|atr|cdm|cas|bin|a52|zip|atx|car|rom|com|xex";
|
||||
info->need_fullpath = true;
|
||||
info->block_extract = false;
|
||||
@@ -673,8 +677,6 @@ void Retro_PollEvent(void);
|
||||
|
||||
void retro_run(void)
|
||||
{
|
||||
int x;
|
||||
|
||||
bool updated = false;
|
||||
|
||||
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE_UPDATE, &updated) && updated)
|
||||
|
||||
Reference in New Issue
Block a user