lr: default language=EN, region=USA. TrickStyle fix

libretro: set default language to English and default region to USA.
Same as standalone.

Force language to English for TrickStyle (US)
Issue #1082
This commit is contained in:
Flyinghead 2023-05-25 13:18:42 +02:00
parent 4391058563
commit 0a1fe0135f
2 changed files with 7 additions and 2 deletions

View File

@ -246,6 +246,11 @@ static void loadSpecialSettings()
NOTICE_LOG(BOOT, "Forcing Full Framebuffer Emulation");
config::EmulateFramebuffer.override(true);
}
if (prod_id == "T-8102N") // TrickStyle (US)
{
NOTICE_LOG(BOOT, "Forcing English Language");
config::Language.override(1);
}
}
else if (settings.platform.isArcade())
{

View File

@ -117,7 +117,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "Default", NULL },
{ NULL, NULL },
},
"Default",
"USA",
},
{
CORE_OPTION_NAME "_language",
@ -136,7 +136,7 @@ struct retro_core_option_v2_definition option_defs_us[] = {
{ "Default", NULL },
{ NULL, NULL },
},
"Default",
"English",
},
{
CORE_OPTION_NAME "_hle_bios",