diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2014-07-30 16:28:56 -0700 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2014-07-30 16:28:56 -0700 |
| commit | 83838a645f29d81a644a514c7759f6157e992686 (patch) | |
| tree | 3483b9cd30fdfede0fe9c334e90d69890c736d4e /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | 5516b0382c231f493a3a99cd6ee17e29e6ba13e9 (diff) | |
| parent | 3b5625c76bef2586af6fbdc98f3ec3ada99db696 (diff) | |
Merge pull request #690 from Armada651/d3dfullscreen_fixes
Exclusive fullscreen fixes
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 cf7685ada6..d6e2177b6b 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -209,7 +209,7 @@ 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 = true; + if (!backend_info.bSupportsExclusiveFullscreen) bBorderlessFullscreen = false; } void VideoConfig::Save(const std::string& ini_file) |
