summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoConfig.cpp
diff options
context:
space:
mode:
authorTony Wasserka <neobrainx@gmail.com>2014-04-12 00:06:02 +0200
committerTony Wasserka <neobrainx@gmail.com>2014-04-12 00:06:02 +0200
commitb106dbc96e5fc0933f8ae5e1d655453efd419100 (patch)
tree9ff7a50f3aa61ab893abf1c8d5809a02ffc0cae0 /Source/Core/VideoCommon/VideoConfig.cpp
parenta823edcc5b22d116bc848b7a859d7484390ba62f (diff)
parentfd9c1fa746616540dcad84bb44509d00ba739c6e (diff)
Merge pull request #235 from magumagu/videobackend-unused-config
VideoBackend: Remove unused config variables.
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoConfig.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp
index b4e211439a..c12fe9b419 100644
--- a/Source/Core/VideoCommon/VideoConfig.cpp
+++ b/Source/Core/VideoCommon/VideoConfig.cpp
@@ -212,8 +212,6 @@ void VideoConfig::VerifyValidity()
if (iAdapter < 0 || iAdapter > ((int)backend_info.Adapters.size() - 1)) iAdapter = 0;
if (iMultisampleMode < 0 || iMultisampleMode >= (int)backend_info.AAModes.size()) iMultisampleMode = 0;
if (!backend_info.bSupports3DVision) b3DVision = false;
- if (!backend_info.bSupportsFormatReinterpretation) bEFBEmulateFormatChanges = false;
- if (!backend_info.bSupportsPixelLighting) bEnablePixelLighting = false;
}
void VideoConfig::Save(const std::string& ini_file)