mirror of
https://github.com/libretro/RetroArch
synced 2024-12-28 09:29:16 +00:00
(3DS) Improve default configuration
This commit is contained in:
parent
7638637518
commit
e27e1114c7
@ -244,6 +244,11 @@ static const bool aspect_ratio_auto = false;
|
||||
static unsigned aspect_ratio_idx = ASPECT_RATIO_16_9;
|
||||
#elif defined(PSP)
|
||||
static unsigned aspect_ratio_idx = ASPECT_RATIO_CORE;
|
||||
#elif defined(_3DS)
|
||||
/* Previously defaulted to ASPECT_RATIO_4_3.
|
||||
* Non-4:3 content looks dreadful when stretched
|
||||
* to 4:3 on the 3DS screen... */
|
||||
static unsigned aspect_ratio_idx = ASPECT_RATIO_CORE;
|
||||
#elif defined(RARCH_CONSOLE)
|
||||
static unsigned aspect_ratio_idx = ASPECT_RATIO_4_3;
|
||||
#else
|
||||
|
@ -543,6 +543,9 @@ static enum location_driver_enum LOCATION_DEFAULT_DRIVER = LOCATION_CORELOCATION
|
||||
static enum location_driver_enum LOCATION_DEFAULT_DRIVER = LOCATION_NULL;
|
||||
#endif
|
||||
|
||||
#if defined(_3DS) && defined(HAVE_RGUI)
|
||||
static enum menu_driver_enum MENU_DEFAULT_DRIVER = MENU_RGUI;
|
||||
#else
|
||||
#if defined(HAVE_XUI)
|
||||
static enum menu_driver_enum MENU_DEFAULT_DRIVER = MENU_XUI;
|
||||
#elif defined(HAVE_MATERIALUI) && defined(RARCH_MOBILE)
|
||||
@ -556,7 +559,7 @@ static enum menu_driver_enum MENU_DEFAULT_DRIVER = MENU_RGUI;
|
||||
#else
|
||||
static enum menu_driver_enum MENU_DEFAULT_DRIVER = MENU_NULL;
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#define GENERAL_SETTING(key, configval, default_enable, default_setting, type, handle_setting) \
|
||||
{ \
|
||||
@ -678,7 +681,7 @@ const char *config_get_default_audio(void)
|
||||
case AUDIO_PS2:
|
||||
return "ps2";
|
||||
case AUDIO_CTR:
|
||||
return "csnd";
|
||||
return "dsp";
|
||||
case AUDIO_SWITCH:
|
||||
return "switch";
|
||||
case AUDIO_RWEBAUDIO:
|
||||
|
@ -240,13 +240,15 @@ static void frontend_ctr_exec(const char* path, bool should_load_game)
|
||||
}
|
||||
else
|
||||
{
|
||||
RARCH_LOG("\n");
|
||||
RARCH_LOG("\n");
|
||||
RARCH_LOG("Warning:\n");
|
||||
RARCH_LOG("First core launch may take 20 seconds!\n");
|
||||
RARCH_LOG("Do not force quit before then or your memory card may be corrupted!\n");
|
||||
RARCH_LOG("\n");
|
||||
RARCH_LOG("\n");
|
||||
RARCH_WARN("\n");
|
||||
RARCH_WARN("\n");
|
||||
RARCH_WARN("Warning:\n");
|
||||
RARCH_WARN("First core launch may take 20\n");
|
||||
RARCH_WARN("seconds! Do not force quit\n");
|
||||
RARCH_WARN("before then or your memory\n");
|
||||
RARCH_WARN("card may be corrupted!\n");
|
||||
RARCH_WARN("\n");
|
||||
RARCH_WARN("\n");
|
||||
exec_cia(path, arg_data);
|
||||
}
|
||||
|
||||
@ -356,6 +358,17 @@ static void ctr_check_dspfirm(void)
|
||||
}
|
||||
fclose(code_fp);
|
||||
}
|
||||
else
|
||||
{
|
||||
RARCH_WARN("\n");
|
||||
RARCH_WARN("\n");
|
||||
RARCH_WARN("Warning:\n");
|
||||
RARCH_WARN("3DS DSP dump is missing.\n");
|
||||
RARCH_WARN("A working DSP dump is required\n");
|
||||
RARCH_WARN("for correct operation.\n");
|
||||
RARCH_WARN("\n");
|
||||
RARCH_WARN("\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user