From b9601d26e3ca4501cfe348ccf4f65ca9ddebc2ae Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Wed, 15 Nov 2023 11:54:33 +0100 Subject: [PATCH] disable per-game settings for video routing options Enabling video routing in a per-game config causes a crash. Fixes MINIDUMP-22K --- core/cfg/option.cpp | 6 +++--- core/cfg/option.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/cfg/option.cpp b/core/cfg/option.cpp index 095f97f48..68c62bcba 100644 --- a/core/cfg/option.cpp +++ b/core/cfg/option.cpp @@ -107,9 +107,9 @@ Option PerPixelLayers("rend.PerPixelLayers", 32); Option NativeDepthInterpolation("rend.NativeDepthInterpolation", false); Option EmulateFramebuffer("rend.EmulateFramebuffer", false); #ifdef VIDEO_ROUTING -Option VideoRouting("rend.VideoRouting", false); -Option VideoRoutingScale("rend.VideoRoutingScale", false); -Option VideoRoutingVRes("rend.VideoRoutingVRes", 720); +Option VideoRouting("rend.VideoRouting", false); +Option VideoRoutingScale("rend.VideoRoutingScale", false); +Option VideoRoutingVRes("rend.VideoRoutingVRes", 720); #endif // Misc diff --git a/core/cfg/option.h b/core/cfg/option.h index 9b8557811..4e7489703 100644 --- a/core/cfg/option.h +++ b/core/cfg/option.h @@ -469,9 +469,9 @@ extern Option DupeFrames; extern Option NativeDepthInterpolation; extern Option EmulateFramebuffer; #ifdef VIDEO_ROUTING -extern Option VideoRouting; -extern Option VideoRoutingScale; -extern Option VideoRoutingVRes; +extern Option VideoRouting; +extern Option VideoRoutingScale; +extern Option VideoRoutingVRes; #endif // Misc