[Retroarch] Tiny issue when displaying version
Just two lines to fix #10445
This commit is contained in:
parent
89c405b196
commit
b92ac7d439
|
@ -26821,6 +26821,8 @@ static void retroarch_print_version(void)
|
||||||
PACKAGE_VERSION);
|
PACKAGE_VERSION);
|
||||||
#ifdef HAVE_GIT_VERSION
|
#ifdef HAVE_GIT_VERSION
|
||||||
printf(" -- %s --\n", retroarch_git_version);
|
printf(" -- %s --\n", retroarch_git_version);
|
||||||
|
#else
|
||||||
|
printf("\n");
|
||||||
#endif
|
#endif
|
||||||
retroarch_get_capabilities(RARCH_CAPABILITIES_COMPILER, str, sizeof(str));
|
retroarch_get_capabilities(RARCH_CAPABILITIES_COMPILER, str, sizeof(str));
|
||||||
strlcat(str, " Built: " __DATE__, sizeof(str));
|
strlcat(str, " Built: " __DATE__, sizeof(str));
|
||||||
|
|
Loading…
Reference in New Issue