diff options
author | Zephyron <zephyron@citron-emu.orgq> | 2025-02-27 13:19:08 +1000 |
---|---|---|
committer | Zephyron <zephyron@citron-emu.orgq> | 2025-02-27 13:19:08 +1000 |
commit | cc610ad9b648d5d66c03d3f97be4977e9562cf5f (patch) | |
tree | 0878b618a1f5ca903d1137fd569b693f28fe754e /src | |
parent | 5a65f9a09413d3fb5b5e0f1a40022418a824cc36 (diff) |
renderer: Disable async presentation due to crashes
- Disable async presentation by default on both Android and desktop platforms due to stability issues.
Diffstat (limited to 'src')
-rw-r--r-- | src/common/settings.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 06253ed25..a0f54c0ab 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -392,11 +392,11 @@ struct Values { Category::RendererAdvanced}; SwitchableSetting<bool> async_presentation{linkage, #ifdef ANDROID - true, + false, // Disabled due to crashes #else - false, + false, // Disabled due to crashes #endif - "async_presentation", Category::RendererAdvanced}; + "async_presentation", Category::RendererAdvanced}; // Hide from UI SwitchableSetting<bool> renderer_force_max_clock{linkage, false, "force_max_clock", Category::RendererAdvanced}; SwitchableSetting<bool> use_reactive_flushing{linkage, |