1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-02 19:13:34 +00:00

[Retroarch] Tiny issue when displaying version

Just two lines to fix 
This commit is contained in:
maksun 2020-04-23 19:48:51 +02:00 committed by GitHub
parent 89c405b196
commit b92ac7d439
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26821,6 +26821,8 @@ static void retroarch_print_version(void)
PACKAGE_VERSION);
#ifdef HAVE_GIT_VERSION
printf(" -- %s --\n", retroarch_git_version);
#else
printf("\n");
#endif
retroarch_get_capabilities(RARCH_CAPABILITIES_COMPILER, str, sizeof(str));
strlcat(str, " Built: " __DATE__, sizeof(str));