From 1a760f2448aabf9fdb4bf604418713773604c297 Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Fri, 29 Jun 2012 16:47:02 +0200 Subject: [PATCH] (PS3) Add ROM loading message --- console/console_settings.h | 1 + ps3/frontend/menu.c | 1 + wii/frontend/rgui.c | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/console/console_settings.h b/console/console_settings.h index cec1500b04..f3a7d12aa3 100644 --- a/console/console_settings.h +++ b/console/console_settings.h @@ -20,6 +20,7 @@ enum { S_DELAY_0 = 0, + S_DELAY_45 = 45, S_DELAY_90 = 90, S_DELAY_180 = 180, S_DELAY_270 = 270 diff --git a/ps3/frontend/menu.c b/ps3/frontend/menu.c index ddde2f5c82..acedbea3e5 100644 --- a/ps3/frontend/menu.c +++ b/ps3/frontend/menu.c @@ -1642,6 +1642,7 @@ static void menu_romselect_iterate(filebrowser_t *filebrowser, menu_romselect_ac else { snprintf(g_console.rom_path, sizeof(g_console.rom_path), filebrowser_get_current_path(filebrowser)); + rarch_settings_msg(S_MSG_LOADING_ROM, S_DELAY_45); rarch_settings_change(S_START_RARCH); } } diff --git a/wii/frontend/rgui.c b/wii/frontend/rgui.c index 412ed15f40..d91b25aeeb 100644 --- a/wii/frontend/rgui.c +++ b/wii/frontend/rgui.c @@ -282,7 +282,7 @@ const char *rgui_iterate(rgui_handle_t *rgui, rgui_action_t action) snprintf(rgui->path_buf, sizeof(rgui->path_buf), "%s/%s", strcmp(dir, "/") == 0 ? "" : dir, path); strlcpy(g_console.rom_path, rgui->path_buf, sizeof(g_console.rom_path)); - rarch_settings_msg(S_MSG_LOADING_ROM, S_DELAY_0); + rarch_settings_msg(S_MSG_LOADING_ROM, S_DELAY_45); const char * message = msg_queue_pull(g_extern.msg_queue);