From b3c6602d06b78d13201952e0cc5fb3a4c8171de1 Mon Sep 17 00:00:00 2001 From: Jules Blok Date: Thu, 27 Nov 2014 15:21:06 +0100 Subject: [PATCH] OGL: Only show the options when stereoscopy was enabled in the INI file. We'll enable the stereoscopy options globally when it is ready for release. --- Source/Core/DolphinWX/VideoConfigDiag.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/VideoConfigDiag.cpp b/Source/Core/DolphinWX/VideoConfigDiag.cpp index a2b1d4812a..c6bb94e996 100644 --- a/Source/Core/DolphinWX/VideoConfigDiag.cpp +++ b/Source/Core/DolphinWX/VideoConfigDiag.cpp @@ -449,7 +449,7 @@ VideoConfigDiag::VideoConfigDiag(wxWindow* parent, const std::string &title, con // - stereoscopy - if (vconfig.backend_info.bSupportsStereoscopy) + if (vconfig.backend_info.bSupportsStereoscopy && vconfig.iStereoMode > 0) { wxFlexGridSizer* const szr_stereo = new wxFlexGridSizer(2, 5, 5);