mirror of
https://git.citron-emu.org/Citron/Citron.git
synced 2025-03-06 18:08:48 +01:00
renderer: Disable async presentation due to crashes
- Disable async presentation by default on both Android and desktop platforms due to stability issues.
This commit is contained in:
parent
5a65f9a094
commit
cc610ad9b6
1 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue