Merge pull request #9388 from JosJuice/default-locale

Set console's default language/country/region based on computer settings
This commit is contained in:
Léo Lam
2021-04-06 12:34:58 +02:00
committed by GitHub
16 changed files with 302 additions and 12 deletions

View File

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