diff --git a/Core/Config.cpp b/Core/Config.cpp index 2a696abaf4..e8657bd4be 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -450,19 +450,19 @@ static ConfigSetting generalSettings[] = { ConfigSetting("EnableStateUndo", &g_Config.bEnableStateUndo, &DefaultEnableStateUndo, true, true), ConfigSetting("RewindFlipFrequency", &g_Config.iRewindFlipFrequency, 0, true, true), - ConfigSetting("ShowRegionOnGameIcon", &g_Config.bShowRegionOnGameIcon, false, true, true), - ConfigSetting("ShowIDOnGameIcon", &g_Config.bShowIDOnGameIcon, false, true, true), - ConfigSetting("GameGridScale", &g_Config.fGameGridScale, 1.0, true, true), + ConfigSetting("ShowRegionOnGameIcon", &g_Config.bShowRegionOnGameIcon, false), + ConfigSetting("ShowIDOnGameIcon", &g_Config.bShowIDOnGameIcon, false), + ConfigSetting("GameGridScale", &g_Config.fGameGridScale, 1.0), ConfigSetting("GridView1", &g_Config.bGridView1, true), ConfigSetting("GridView2", &g_Config.bGridView2, true), ConfigSetting("GridView3", &g_Config.bGridView3, false), ConfigSetting("ComboMode", &g_Config.iComboMode, 0), - ConfigSetting("RightAnalogUp", &g_Config.iRightAnalogUp, 0), - ConfigSetting("RightAnalogDown", &g_Config.iRightAnalogDown, 0), - ConfigSetting("RightAnalogLeft", &g_Config.iRightAnalogLeft, 0), - ConfigSetting("RightAnalogRight", &g_Config.iRightAnalogRight, 0), - ConfigSetting("RightAnalogPress", &g_Config.iRightAnalogPress, 0), - ConfigSetting("RightAnalogCustom", &g_Config.bRightAnalogCustom, false), + ConfigSetting("RightAnalogUp", &g_Config.iRightAnalogUp, 0, true, true), + ConfigSetting("RightAnalogDown", &g_Config.iRightAnalogDown, 0, true, true), + ConfigSetting("RightAnalogLeft", &g_Config.iRightAnalogLeft, 0, true, true), + ConfigSetting("RightAnalogRight", &g_Config.iRightAnalogRight, 0, true, true), + ConfigSetting("RightAnalogPress", &g_Config.iRightAnalogPress, 0, true, true), + ConfigSetting("RightAnalogCustom", &g_Config.bRightAnalogCustom, false, true, true), // "default" means let emulator decide, "" means disable. ConfigSetting("ReportingHost", &g_Config.sReportHost, "default"), diff --git a/GPU/Vulkan/TextureCacheVulkan.cpp b/GPU/Vulkan/TextureCacheVulkan.cpp index b46ca05710..28bef1d9a6 100644 --- a/GPU/Vulkan/TextureCacheVulkan.cpp +++ b/GPU/Vulkan/TextureCacheVulkan.cpp @@ -397,6 +397,7 @@ void TextureCacheVulkan::CompileScalingShader() { if (!g_Config.bTexHardwareScaling) return; + ReloadAllPostShaderInfo(); const TextureShaderInfo *shaderInfo = GetTextureShaderInfo(g_Config.sTextureShaderName); if (!shaderInfo || shaderInfo->computeShaderFile.empty()) return;