mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Core: Kill off Host_UpdateLogDisplay()
This was actually never used as far as I can tell. There was no wx event handling done whatsoever for the global ID, So this is basically a dead function.
This commit is contained in:
@ -542,19 +542,6 @@ void Host_NotifyMapLoaded()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void Host_UpdateLogDisplay()
|
||||
{
|
||||
wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_UPDATELOGDISPLAY);
|
||||
main_frame->GetEventHandler()->AddPendingEvent(event);
|
||||
|
||||
if (main_frame->g_pCodeWindow)
|
||||
{
|
||||
main_frame->g_pCodeWindow->GetEventHandler()->AddPendingEvent(event);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void Host_UpdateDisasmDialog()
|
||||
{
|
||||
wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_UPDATEDISASMDIALOG);
|
||||
@ -566,7 +553,6 @@ void Host_UpdateDisasmDialog()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void Host_ShowJitResults(unsigned int address)
|
||||
{
|
||||
if (main_frame->g_pCodeWindow && main_frame->g_pCodeWindow->m_JitWindow)
|
||||
|
Reference in New Issue
Block a user