Set console's default language/country/region based on computer settings

This commit is contained in:
JosJuice
2020-12-27 23:11:22 +01:00
parent a1000afacc
commit 27ddf6382b
13 changed files with 278 additions and 5 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;