diff options
| author | Markus Wick <degasus@users.noreply.github.com> | 2015-12-28 10:18:32 +0100 |
|---|---|---|
| committer | Markus Wick <degasus@users.noreply.github.com> | 2015-12-28 10:18:32 +0100 |
| commit | aabcd441d9a9fa98565a6aaf82cf56b64b53767d (patch) | |
| tree | 443d05c510fa63723a8ca6a8762349d543e1443c /Source/Core/VideoBackends/Software/SWmain.cpp | |
| parent | 281860eafa65d7f65b02cc449ac94397d0f111f4 (diff) | |
| parent | 8bda12bcfdb20324cd5a764ea814b176b36a4687 (diff) | |
Merge pull request #3381 from Armada651/revert-3076
Revert "Merge pull request #3076 from void-ghost/stereo3d_presets"
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWmain.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp index 7b55bb0971..c891542d8a 100644 --- a/Source/Core/VideoBackends/Software/SWmain.cpp +++ b/Source/Core/VideoBackends/Software/SWmain.cpp @@ -65,19 +65,14 @@ std::string VideoSoftware::GetDisplayName() const return "Software Renderer"; } -std::string VideoSoftware::GetConfigName() const -{ - return "gfx_software"; -} - void VideoSoftware::ShowConfig(void *hParent) { - Host_ShowVideoConfig(hParent, GetDisplayName(), GetConfigName()); + Host_ShowVideoConfig(hParent, GetDisplayName(), "gfx_software"); } bool VideoSoftware::Initialize(void *window_handle) { - g_SWVideoConfig.Load((File::GetUserPath(D_CONFIG_IDX) + GetConfigName() + ".ini").c_str()); + g_SWVideoConfig.Load((File::GetUserPath(D_CONFIG_IDX) + "gfx_software.ini").c_str()); SWOGLWindow::Init(window_handle); |
