diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2021-09-03 21:43:19 -0700 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2021-10-13 12:32:16 -0700 |
| commit | 78bfd25964206a1f0a34170fdd90ca1a8ce242db (patch) | |
| tree | 93aeabec56ac75e8d88baeb6f78e27840d09dead /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | 525e6b21943b09172043797535db6a2890c45805 (diff) | |
Fix all uninitialized variable warnings (C26495)
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index 70ad7096e9..255e1722b9 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -33,29 +33,6 @@ void UpdateActiveConfig() g_ActiveConfig.bVSyncActive = IsVSyncActive(g_ActiveConfig.bVSync); } -VideoConfig::VideoConfig() -{ - // Needed for the first frame, I think - fAspectRatioHackW = 1; - fAspectRatioHackH = 1; - - // disable all features by default - backend_info.api_type = APIType::Nothing; - backend_info.MaxTextureSize = 16384; - backend_info.bSupportsExclusiveFullscreen = false; - backend_info.bSupportsMultithreading = false; - backend_info.bSupportsST3CTextures = false; - backend_info.bSupportsBPTCTextures = false; - - bEnableValidationLayer = false; - -#if defined(ANDROID) - bBackendMultithreading = false; -#else - bBackendMultithreading = true; -#endif -} - void VideoConfig::Refresh() { if (!s_has_registered_callback) |
