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:
Rafael Kitover 2019-04-16 15:46:32 +00:00
parent 4203bb53f2
commit c2656f1375
No known key found for this signature in database
GPG Key ID: 08AB596679D86240
1 changed files with 1 additions and 1 deletions

View File

@ -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