mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 15:19:09 +00:00
Set console's default language/country/region based on computer settings
This commit is contained in:
parent
a1000afacc
commit
27ddf6382b
13 changed files with 278 additions and 5 deletions
|
@ -93,12 +93,21 @@ void UpdatePointer()
|
|||
env->CallStaticVoidMethod(IDCache::GetNativeLibraryClass(), IDCache::GetUpdateTouchPointer());
|
||||
}
|
||||
|
||||
std::vector<std::string> Host_GetPreferredLocales()
|
||||
{
|
||||
// We would like to call ConfigurationCompat.getLocales here, but this function gets called
|
||||
// during dynamic initialization, and it seems like that makes us unable to obtain a JNIEnv.
|
||||
return {};
|
||||
}
|
||||
|
||||
void Host_NotifyMapLoaded()
|
||||
{
|
||||
}
|
||||
|
||||
void Host_RefreshDSPDebuggerWindow()
|
||||
{
|
||||
}
|
||||
|
||||
bool Host_UIBlocksControllerState()
|
||||
{
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue