mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-25 11:46:27 +00:00
Merge pull request #800 from FioraAeterna/showdebugjit
Debugger: make "PPC to x86" open JIT window
This commit is contained in:
commit
7f3458e957
1 changed files with 5 additions and 1 deletions
|
@ -555,8 +555,12 @@ void Host_UpdateDisasmDialog()
|
||||||
|
|
||||||
void Host_ShowJitResults(unsigned int address)
|
void Host_ShowJitResults(unsigned int address)
|
||||||
{
|
{
|
||||||
if (main_frame->g_pCodeWindow && main_frame->g_pCodeWindow->m_JitWindow)
|
if (main_frame->g_pCodeWindow)
|
||||||
|
{
|
||||||
|
if (!main_frame->g_pCodeWindow->m_JitWindow)
|
||||||
|
main_frame->g_pCodeWindow->ToggleJitWindow(true);
|
||||||
main_frame->g_pCodeWindow->m_JitWindow->ViewAddr(address);
|
main_frame->g_pCodeWindow->m_JitWindow->ViewAddr(address);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Host_UpdateMainFrame()
|
void Host_UpdateMainFrame()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue