diff options
| author | degasus <wickmarkus@web.de> | 2016-01-13 21:38:11 +0100 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2016-06-26 12:34:59 +0200 |
| commit | 5f2f4620676198bb63eeb169358435037491d4ad (patch) | |
| tree | 245aecd3d762973bd42104c271390ccbd9ef9827 /Source/Core/VideoBackends/Software/SWmain.cpp | |
| parent | 7833ff25df5cb3bf10b363d30d7af8007094454a (diff) | |
VideoBackends: Merge ShowConfig functions.
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWmain.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp index f37bc4aa14..d5b9bed4ca 100644 --- a/Source/Core/VideoBackends/Software/SWmain.cpp +++ b/Source/Core/VideoBackends/Software/SWmain.cpp @@ -139,7 +139,7 @@ std::string VideoSoftware::GetConfigName() const return "gfx_software"; } -static void InitBackendInfo() +void VideoSoftware::InitBackendInfo() { g_Config.backend_info.APIType = API_NONE; g_Config.backend_info.bSupports3DVision = false; @@ -152,13 +152,6 @@ static void InitBackendInfo() g_Config.backend_info.AAModes = {1}; } -void VideoSoftware::ShowConfig(void* hParent) -{ - if (!m_initialized) - InitBackendInfo(); - Host_ShowVideoConfig(hParent, GetDisplayName(), GetConfigName()); -} - bool VideoSoftware::Initialize(void* window_handle) { InitBackendInfo(); |
