diff options
| author | Dentomologist <dentomologist@gmail.com> | 2025-08-02 14:26:15 -0700 |
|---|---|---|
| committer | Dentomologist <dentomologist@gmail.com> | 2025-08-03 13:12:01 -0700 |
| commit | d0de0a3f478a8a491c5b7dad8369dc0961110925 (patch) | |
| tree | f95ca17f4177c6072d792bf6d66d02440db6fc9c /Source/Core/DolphinNoGUI/MainNoGUI.cpp | |
| parent | 6ca486ffb20bd20d8e3efa20f5dc45beb18613c2 (diff) | |
Host: Remove unnecessary function
Remove Host_UpdateMainFrame(). The only non-empty call happened in
DolphinNoGUI which called s_update_main_frame_event.Set(), but
DolphinNoGUI never waits on that event.
Diffstat (limited to 'Source/Core/DolphinNoGUI/MainNoGUI.cpp')
| -rw-r--r-- | Source/Core/DolphinNoGUI/MainNoGUI.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp index 81051adb78..a09a2060fd 100644 --- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp +++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp @@ -70,7 +70,6 @@ bool Host_UIBlocksControllerState() return false; } -static Common::Event s_update_main_frame_event; void Host_Message(const HostMessageID id) { if (id == HostMessageID::WMUserStop) @@ -94,11 +93,6 @@ void Host_JitProfileDataWiped() { } -void Host_UpdateMainFrame() -{ - s_update_main_frame_event.Set(); -} - void Host_RequestRenderWindowSize(int width, int height) { } |
