diff options
Diffstat (limited to 'Source/Android/jni/MainAndroid.cpp')
| -rw-r--r-- | Source/Android/jni/MainAndroid.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 6542109949..1b698d2a17 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -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; |
