From 8596de91af371a916cdb9e4db8d2dbbf54fd80d7 Mon Sep 17 00:00:00 2001 From: Ani Date: Sat, 27 Jun 2026 21:45:47 +0200 Subject: [PATCH] settings: Default Shader Mode to "Async with Shader Interpreter" --- rpcs3/Emu/system_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/system_config.h b/rpcs3/Emu/system_config.h index 83fc51f0af..c431ee2f5a 100644 --- a/rpcs3/Emu/system_config.h +++ b/rpcs3/Emu/system_config.h @@ -126,7 +126,7 @@ struct cfg_root : cfg::node cfg::_enum frame_limit{ this, "Frame limit", frame_limit_type::_auto, true }; cfg::_float<0, 1000> second_frame_limit{ this, "Second Frame Limit", 0, true }; // 0 disables its effect cfg::_enum antialiasing_level{ this, "MSAA", msaa_level::_auto }; - cfg::_enum shadermode{ this, "Shader Mode", shader_mode::async_recompiler }; + cfg::_enum shadermode{ this, "Shader Mode", shader_mode::async_with_interpreter }; cfg::_enum shader_precision{ this, "Shader Precision", gpu_preset_level::high }; cfg::_enum vsync{ this, "VSync Mode", vsync_mode::off, true };