Revert "Dehardcode program name string"

This reverts commit 11291cc703c1e8f5c166a9fd5ddfbeec62f0ee6b.
This commit is contained in:
twinaphex 2019-07-19 19:39:51 +02:00
parent b04e057b5d
commit f787e77c25

View File

@ -16493,8 +16493,7 @@ void drivers_init(int flags)
**/ **/
/** /**
* Driver ownership - set this to true if the platform in * Driver ownership - set this to true if the platform in question needs to 'own'
* question needs to 'own'
* the respective handle and therefore skip regular RetroArch * the respective handle and therefore skip regular RetroArch
* driver teardown/reiniting procedure. * driver teardown/reiniting procedure.
* *
@ -18178,8 +18177,7 @@ static void retroarch_parse_input_and_config(int argc, char *argv[])
rarch_log_file_init(); rarch_log_file_init();
#ifdef HAVE_GIT_VERSION #ifdef HAVE_GIT_VERSION
RARCH_LOG("%s %s (Git %s)\n", RARCH_LOG("RetroArch %s (Git %s)\n",
msg_hash_to_str(MSG_PROGRAM),
PACKAGE_VERSION, retroarch_git_version); PACKAGE_VERSION, retroarch_git_version);
#endif #endif
@ -21174,8 +21172,7 @@ bool rarch_write_debug_info(void)
filestream_printf(file, "Log Date/Time: %s\n", timedate); filestream_printf(file, "Log Date/Time: %s\n", timedate);
} }
#endif #endif
filestream_printf(file, "%s Version: %s\n", filestream_printf(file, "RetroArch Version: %s\n", PACKAGE_VERSION);
msg_hash_to_str(MSG_PROGRAM), PACKAGE_VERSION);
#ifdef HAVE_LAKKA #ifdef HAVE_LAKKA
if (frontend->get_lakka_version) if (frontend->get_lakka_version)
@ -21186,13 +21183,9 @@ bool rarch_write_debug_info(void)
} }
#endif #endif
filestream_printf(file, "%s Build Date: %s\n", filestream_printf(file, "RetroArch Build Date: %s\n", __DATE__);
msg_hash_to_str(MSG_PROGRAM),
__DATE__);
#ifdef HAVE_GIT_VERSION #ifdef HAVE_GIT_VERSION
filestream_printf(file, "%s Git Commit: %s\n", filestream_printf(file, "RetroArch Git Commit: %s\n", retroarch_git_version);
msg_hash_to_str(MSG_PROGRAM),
retroarch_git_version);
#endif #endif
filestream_printf(file, "\n"); filestream_printf(file, "\n");