mirror of
https://github.com/libretro/RetroArch
synced 2025-02-13 21:40:27 +00:00
(PS3) Add ROM loading message
This commit is contained in:
parent
2832ca0fb1
commit
1a760f2448
@ -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
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user