From d0de0a3f478a8a491c5b7dad8369dc0961110925 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sat, 2 Aug 2025 14:26:15 -0700 Subject: 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. --- Source/Android/jni/MainAndroid.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Source/Android/jni/MainAndroid.cpp') diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 7f4daf54dd..0380ade0b8 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -163,10 +163,6 @@ void Host_JitProfileDataWiped() { } -void Host_UpdateMainFrame() -{ -} - void Host_RequestRenderWindowSize(int width, int height) { std::thread jnicall(UpdatePointer); -- cgit v1.2.3 From 530ea7528e6a43ece73b48d7aa298000b6629002 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sat, 2 Aug 2025 15:03:55 -0700 Subject: Host: Remove unnecessary functions Remove Host_RefreshDSPDebuggerWindow (which hasn't done anything since DolphinWX was removed in 44b22c90) and DSP::Host::UpdateDebugger (which only called Host_RefreshDSPDebuggerWindow). --- Source/Android/jni/MainAndroid.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Source/Android/jni/MainAndroid.cpp') diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 0380ade0b8..646f745a13 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -110,10 +110,6 @@ void Host_PPCBreakpointsChanged() { } -void Host_RefreshDSPDebuggerWindow() -{ -} - bool Host_UIBlocksControllerState() { return false; -- cgit v1.2.3