summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoConfig.cpp
diff options
context:
space:
mode:
authorMarkus Wick <degasus@users.noreply.github.com>2016-07-31 10:38:42 +0200
committerGitHub <noreply@github.com>2016-07-31 10:38:42 +0200
commite281273cd7c7e173b9911ba0b8e01dd809cfd8ea (patch)
treeb70ab77109da2473b23bbe86fc7fc240e2d9a978 /Source/Core/VideoCommon/VideoConfig.cpp
parenta3438f916b8eb2123b8977ac334d104dd2640e5e (diff)
parent14e0b48ae43c3625f8571dec88121c91d575c65c (diff)
Merge pull request #4047 from lioncash/enum-fwd
VideoCommon: Make API_TYPE an enum class
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoConfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp
index 7f8def5450..1e4a5b4973 100644
--- a/Source/Core/VideoCommon/VideoConfig.cpp
+++ b/Source/Core/VideoCommon/VideoConfig.cpp
@@ -39,7 +39,7 @@ VideoConfig::VideoConfig()
fAspectRatioHackH = 1;
// disable all features by default
- backend_info.APIType = API_NONE;
+ backend_info.api_type = APIType::Nothing;
backend_info.bSupportsExclusiveFullscreen = false;
}