(RGUI) fix rom loading message not appearing

This commit is contained in:
Toad King 2012-08-22 12:25:58 -04:00
parent c48b5a30da
commit aaf898fde8
2 changed files with 1 additions and 3 deletions

View File

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

View File

@ -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) {\