diff options
| author | Markus Wick <markus+github@selfnet.de> | 2014-12-30 12:30:23 +0100 |
|---|---|---|
| committer | Markus Wick <markus+github@selfnet.de> | 2014-12-30 12:30:23 +0100 |
| commit | f5cddd4020f0ca875b8e0b3e7c3ea79b3710e488 (patch) | |
| tree | 66fa47d0c69135d14bfcd62a474e8120d761b967 /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | dd1e624fffde90171fb193495c267f46d650273f (diff) | |
| parent | 0860c022588dfa210dabd96b40627411bbf44e9c (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.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; |
