summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoConfig.cpp
diff options
context:
space:
mode:
authorMarkus Wick <markus+github@selfnet.de>2014-12-30 12:30:23 +0100
committerMarkus Wick <markus+github@selfnet.de>2014-12-30 12:30:23 +0100
commitf5cddd4020f0ca875b8e0b3e7c3ea79b3710e488 (patch)
tree66fa47d0c69135d14bfcd62a474e8120d761b967 /Source/Core/VideoCommon/VideoConfig.cpp
parentdd1e624fffde90171fb193495c267f46d650273f (diff)
parent0860c022588dfa210dabd96b40627411bbf44e9c (diff)
Merge pull request #1790 from Armada651/master
VideoConfig: Don't disable stereoscopy if Real XFB is enabled but not in use.
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoConfig.cpp2
1 files changed, 1 insertions, 1 deletions
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;