mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-16 07:11:40 +00:00
Core: Kill off Host_ShowJitResults
Another host function that can be killed off by simple wx event handling
This commit is contained in:
parent
d5d5580424
commit
cf46ac7dc9
11 changed files with 15 additions and 24 deletions
|
@ -309,7 +309,12 @@ void CCodeView::OnPopupMenu(wxCommandEvent& event)
|
|||
break;
|
||||
|
||||
case IDM_JITRESULTS:
|
||||
m_debugger->ShowJitResults(m_selection);
|
||||
{
|
||||
// Propagate back to the parent window and tell it
|
||||
// to flip to the JIT tab for the current address.
|
||||
wxCommandEvent jit_event(wxEVT_HOST_COMMAND, IDM_UPDATEJITPANE);
|
||||
GetEventHandler()->AddPendingEvent(jit_event);
|
||||
}
|
||||
break;
|
||||
|
||||
case IDM_FOLLOWBRANCH:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue