libretro: remove "-" between version and git sha
To make the libretro core consistent with other cores, remove the "-" between the version and the git short sha for git builds. Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
parent
4203bb53f2
commit
c2656f1375
|
@ -535,7 +535,7 @@ void retro_get_system_info(struct retro_system_info *info)
|
|||
info->need_fullpath = false;
|
||||
info->valid_extensions = "dmg|gb|gbc|cgb|sgb|gba";
|
||||
#ifdef GIT_COMMIT
|
||||
info->library_version = VBAM_VERSION "-" GIT_COMMIT;
|
||||
info->library_version = VBAM_VERSION GIT_COMMIT;
|
||||
#else
|
||||
info->library_version = VBAM_VERSION;
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue