libretro: put " " between version and git sha
To make the version string consistent with other cores, make it of the form "<VER> <SHORT-SHA>" with a space in-between. Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
parent
c2656f1375
commit
3cacb363a6
|
@ -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