diff options
| author | Jules Blok <jules.blok@gmail.com> | 2014-12-29 19:15:31 +0100 |
|---|---|---|
| committer | Jules Blok <jules.blok@gmail.com> | 2014-12-29 19:15:31 +0100 |
| commit | 0860c022588dfa210dabd96b40627411bbf44e9c (patch) | |
| tree | ebd9da7fa2ea177bcab18e95affcd4cd903be4d7 /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | df44b67e64c1993d8ba9077508e38807bfcf8cc3 (diff) | |
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.cpp | 2 |
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; |
