mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Android: Default backendMultithreading to false on android
This commit is contained in:
@ -41,7 +41,12 @@ VideoConfig::VideoConfig()
|
||||
backend_info.bSupportsBPTCTextures = false;
|
||||
|
||||
bEnableValidationLayer = false;
|
||||
|
||||
#if defined(ANDROID)
|
||||
bBackendMultithreading = false;
|
||||
#else
|
||||
bBackendMultithreading = true;
|
||||
#endif
|
||||
}
|
||||
|
||||
void VideoConfig::Refresh()
|
||||
|
Reference in New Issue
Block a user