From 2422c61d7a1bdb8b0227165ba54011f8e8534eef Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 7 Nov 2013 21:47:41 +0100 Subject: [PATCH] (retroarch.c) Fix typo in log message --- retroarch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroarch.c b/retroarch.c index c99ab1bc4e..dde3a5c29d 100644 --- a/retroarch.c +++ b/retroarch.c @@ -3204,7 +3204,7 @@ void rarch_main_deinit(void) if (g_extern.rom_file_temporary) { - RARCH_LOG("Removing tempoary ROM file: %s.\n", g_extern.last_rom); + RARCH_LOG("Removing temporary ROM file: %s.\n", g_extern.last_rom); if (remove(g_extern.last_rom) < 0) RARCH_ERR("Failed to remove temporary file: %s.\n", g_extern.last_rom); g_extern.rom_file_temporary = false;