(PS3) Add ROM loading message

This commit is contained in:
Twinaphex 2012-06-29 16:47:02 +02:00
parent 2832ca0fb1
commit 1a760f2448
3 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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);
}
}

View File

@ -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);