Skip to content

Commit

Permalink
libretro: remove "-" between version and git sha
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
rkitover committed Apr 16, 2019
1 parent 4203bb5 commit c2656f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libretro/libretro.cpp
Expand Up @@ -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
Expand Down

0 comments on commit c2656f1

Please sign in to comment.