mirror of
https://git.citron-emu.org/Citron/Citron.git
synced 2025-03-15 03:14:50 +00: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};
|
Category::RendererAdvanced};
|
||||||
SwitchableSetting<bool> async_presentation{linkage,
|
SwitchableSetting<bool> async_presentation{linkage,
|
||||||
#ifdef ANDROID
|
#ifdef ANDROID
|
||||||
true,
|
false, // Disabled due to crashes
|
||||||
#else
|
#else
|
||||||
false,
|
false, // Disabled due to crashes
|
||||||
#endif
|
#endif
|
||||||
"async_presentation", Category::RendererAdvanced};
|
"async_presentation", Category::RendererAdvanced}; // Hide from UI
|
||||||
SwitchableSetting<bool> renderer_force_max_clock{linkage, false, "force_max_clock",
|
SwitchableSetting<bool> renderer_force_max_clock{linkage, false, "force_max_clock",
|
||||||
Category::RendererAdvanced};
|
Category::RendererAdvanced};
|
||||||
SwitchableSetting<bool> use_reactive_flushing{linkage,
|
SwitchableSetting<bool> use_reactive_flushing{linkage,
|
||||||
|
|
Loading…
Add table
Reference in a new issue