diff options
| author | Markus Wick <degasus@users.noreply.github.com> | 2016-07-31 10:38:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-31 10:38:42 +0200 |
| commit | e281273cd7c7e173b9911ba0b8e01dd809cfd8ea (patch) | |
| tree | b70ab77109da2473b23bbe86fc7fc240e2d9a978 /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | a3438f916b8eb2123b8977ac334d104dd2640e5e (diff) | |
| parent | 14e0b48ae43c3625f8571dec88121c91d575c65c (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.cpp | 2 |
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; } |
