diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-08-21 14:14:54 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-08-21 14:14:54 -0400 |
| commit | f17dcd201906c33074d5979390768ed74eb9709f (patch) | |
| tree | ab06743826b4f8a6c7e90ad32edc7b75a6410a6e /Source/Core/VideoBackends/Software/SWmain.cpp | |
| parent | cf82972961baa120675fa038b82cf99c8404ab1b (diff) | |
| parent | 6dbafa92389f52c6bd0140b4525b563fe74af0f2 (diff) | |
Merge pull request #764 from magcius/new-nogui-2
Rewrite GLInterface
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWmain.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp index 4892daeeee..7cbc278029 100644 --- a/Source/Core/VideoBackends/Software/SWmain.cpp +++ b/Source/Core/VideoBackends/Software/SWmain.cpp @@ -71,7 +71,7 @@ void VideoSoftware::ShowConfig(void *hParent) Host_ShowVideoConfig(hParent, GetDisplayName(), "gfx_software"); } -bool VideoSoftware::Initialize(void *&window_handle) +bool VideoSoftware::Initialize(void *window_handle) { g_SWVideoConfig.Load((File::GetUserPath(D_CONFIG_IDX) + "gfx_software.ini").c_str()); @@ -372,10 +372,4 @@ unsigned int VideoSoftware::PeekMessages() return GLInterface->PeekMessages(); } -// Show the current FPS -void VideoSoftware::UpdateFPSDisplay(const std::string& text) -{ - GLInterface->UpdateFPSDisplay(StringFromFormat("%s | Software | %s", scm_rev_str, text.c_str())); -} - } |
