mirror of
https://github.com/libretro/RetroArch
synced 2025-01-26 18:35:22 +00:00
(RGUI) fix rom loading message not appearing
This commit is contained in:
parent
c48b5a30da
commit
aaf898fde8
@ -266,7 +266,7 @@ static void render_messagebox(rgui_handle_t *rgui, const char *message)
|
||||
|
||||
static void render_text(rgui_handle_t *rgui)
|
||||
{
|
||||
if (rgui->need_refresh)
|
||||
if (rgui->need_refresh && g_console.mode_switch == MODE_MENU)
|
||||
return;
|
||||
|
||||
size_t begin = rgui->directory_ptr >= TERM_HEIGHT / 2 ?
|
||||
|
@ -323,8 +323,6 @@ static void get_environment_settings(void)
|
||||
snprintf(default_paths.sram_dir, sizeof(default_paths.sram_dir), "%s/sram", default_paths.port_dir);
|
||||
snprintf(default_paths.input_presets_dir, sizeof(default_paths.input_presets_dir), "%s/input", default_paths.port_dir);
|
||||
strlcpy(default_paths.executable_extension, ".dol", sizeof(default_paths.executable_extension));
|
||||
//RARCH_LOG("port_dir: %s\n", default_paths.port_dir);
|
||||
RARCH_LOG("core_dir: %s\n", default_paths.core_dir);
|
||||
}
|
||||
|
||||
#define MAKE_FILE(x) {\
|
||||
|
Loading…
x
Reference in New Issue
Block a user