summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoConfig.cpp
diff options
context:
space:
mode:
authorskidau <skidau@gmail.com>2014-10-11 14:27:49 +1100
committerskidau <skidau@gmail.com>2014-10-11 14:27:49 +1100
commita373cc065478b814412c3e9975a9602ee5b0dd59 (patch)
treea77004fa76e106daaa9f9165fb5fd40ee3fcd504 /Source/Core/VideoCommon/VideoConfig.cpp
parent98d9a38fe09b3f372e99a2a8204d1b0f733a56ce (diff)
parent03e1bd0995c5e77d954067653716fd72b7579c95 (diff)
Merge pull request #1231 from Armada651/borderless
Support the borderless fullscreen option in all backends.
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoConfig.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp
index ec7b0f9862..1c9c94b283 100644
--- a/Source/Core/VideoCommon/VideoConfig.cpp
+++ b/Source/Core/VideoCommon/VideoConfig.cpp
@@ -208,7 +208,6 @@ void VideoConfig::VerifyValidity()
// TODO: Check iMaxAnisotropy value
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.bSupportsExclusiveFullscreen) bBorderlessFullscreen = false;
}
void VideoConfig::Save(const std::string& ini_file)