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:
parent
4391058563
commit
0a1fe0135f
|
@ -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())
|
||||
{
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue