From 0860c022588dfa210dabd96b40627411bbf44e9c Mon Sep 17 00:00:00 2001 From: Jules Blok Date: Mon, 29 Dec 2014 19:15:31 +0100 Subject: [PATCH] VideoConfig: Don't disable stereoscopy if Real XFB is enabled but not in use. --- Source/Core/VideoCommon/VideoConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index 245238ebca..5448d0c4b0 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -225,7 +225,7 @@ void VideoConfig::VerifyValidity() iStereoMode = 0; } - if (bUseRealXFB) + if (bUseXFB && bUseRealXFB) { OSD::AddMessage("Stereoscopic 3D isn't supported with Real XFB, turning off stereoscopy.", 10000); iStereoMode = 0;