From a51953e4f9f8ec4868c473857a4f297eb7a5e2b8 Mon Sep 17 00:00:00 2001 From: MaranBr Date: Fri, 22 Aug 2025 16:23:34 +0200 Subject: [PATCH] [video_core] Add hability to change Sync Memory Operations at runtime (#300) This adds the hability to change Sync Memory Operations at runtime. Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/300 Reviewed-by: Shinmegumi Co-authored-by: MaranBr Co-committed-by: MaranBr --- src/common/settings.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/common/settings.h b/src/common/settings.h index 9ca635c518..2a1c88c79e 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -466,7 +466,13 @@ struct Values { true, true}; #endif - SwitchableSetting sync_memory_operations{linkage, false, "sync_memory_operations", Category::RendererAdvanced, true, true}; + SwitchableSetting sync_memory_operations{linkage, + false, + "sync_memory_operations", + Category::RendererAdvanced, + Specialization::Default, + true, + true}; SwitchableSetting async_presentation{linkage, #ifdef ANDROID true,