diff --git a/command_event.c b/command_event.c index 6ceffccfa9..7f96ffe55f 100644 --- a/command_event.c +++ b/command_event.c @@ -1108,7 +1108,7 @@ bool event_command(enum event_command cmd) event_init_controllers(); break; case EVENT_CMD_RESET: - RARCH_LOG(RETRO_LOG_RESETTING_CONTENT); + RARCH_LOG("%s.\n", msg_hash_to_str(MSG_RESET)); rarch_main_msg_queue_push_new(MSG_RESET, 1, 120, true); pretro_reset(); diff --git a/intl/english.h b/intl/english.h index a68ef7569b..54409cf1d0 100644 --- a/intl/english.h +++ b/intl/english.h @@ -89,7 +89,6 @@ #define RETRO_MSG_MOVIE_RECORD_STOPPING "Stopping movie record." #define RETRO_MSG_MOVIE_PLAYBACK_ENDED "Movie playback ended." #define RETRO_MSG_LIBRETRO_ABI_BREAK RETRO_FRONTEND " is compiled against a different version of libretro than this libretro implementation." -#define RETRO_MSG_RESETTING_CONTENT "Resetting content." #define RETRO_LOG_MOVIE_STARTED_INIT_NETPLAY_FAILED RETRO_MSG_MOVIE_STARTED_INIT_NETPLAY_FAILED TERM_STR #define RETRO_LOG_INIT_NETPLAY_FAILED RETRO_MSG_INIT_NETPLAY_FAILED TERM_STR @@ -99,6 +98,5 @@ #define RETRO_LOG_MOVIE_RECORD_STOPPING RETRO_MSG_MOVIE_RECORD_STOPPING TERM_STR #define RETRO_LOG_MOVIE_PLAYBACK_ENDED RETRO_MSG_MOVIE_PLAYBACK_ENDED TERM_STR #define RETRO_LOG_LIBRETRO_ABI_BREAK RETRO_MSG_LIBRETRO_ABI_BREAK RETRO_FRONTEND TERM_STR -#define RETRO_LOG_RESETTING_CONTENT RETRO_MSG_RESETTING_CONTENT TERM_STR #endif