summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoConfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoConfig.cpp23
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)