From f787e77c25274c169e9afddce52168c401ff4adc Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 19 Jul 2019 19:39:51 +0200 Subject: [PATCH] Revert "Dehardcode program name string" This reverts commit 11291cc703c1e8f5c166a9fd5ddfbeec62f0ee6b. --- retroarch.c | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/retroarch.c b/retroarch.c index fb6e544cdf..0710479701 100644 --- a/retroarch.c +++ b/retroarch.c @@ -16493,8 +16493,7 @@ void drivers_init(int flags) **/ /** - * Driver ownership - set this to true if the platform in - * question needs to 'own' + * Driver ownership - set this to true if the platform in question needs to 'own' * the respective handle and therefore skip regular RetroArch * driver teardown/reiniting procedure. * @@ -18178,8 +18177,7 @@ static void retroarch_parse_input_and_config(int argc, char *argv[]) rarch_log_file_init(); #ifdef HAVE_GIT_VERSION - RARCH_LOG("%s %s (Git %s)\n", - msg_hash_to_str(MSG_PROGRAM), + RARCH_LOG("RetroArch %s (Git %s)\n", PACKAGE_VERSION, retroarch_git_version); #endif @@ -21174,8 +21172,7 @@ bool rarch_write_debug_info(void) filestream_printf(file, "Log Date/Time: %s\n", timedate); } #endif - filestream_printf(file, "%s Version: %s\n", - msg_hash_to_str(MSG_PROGRAM), PACKAGE_VERSION); + filestream_printf(file, "RetroArch Version: %s\n", PACKAGE_VERSION); #ifdef HAVE_LAKKA if (frontend->get_lakka_version) @@ -21186,13 +21183,9 @@ bool rarch_write_debug_info(void) } #endif - filestream_printf(file, "%s Build Date: %s\n", - msg_hash_to_str(MSG_PROGRAM), - __DATE__); + filestream_printf(file, "RetroArch Build Date: %s\n", __DATE__); #ifdef HAVE_GIT_VERSION - filestream_printf(file, "%s Git Commit: %s\n", - msg_hash_to_str(MSG_PROGRAM), - retroarch_git_version); + filestream_printf(file, "RetroArch Git Commit: %s\n", retroarch_git_version); #endif filestream_printf(file, "\n");