Add debug window for MDEC

This commit is contained in:
Connor McLaughlin
2019-10-12 22:47:00 +10:00
parent 0f68c8c5d3
commit 2d9d999713
4 changed files with 70 additions and 3 deletions

View File

@ -327,6 +327,7 @@ void System::DrawDebugMenus()
m_gpu->DrawDebugMenu();
m_spu->DrawDebugMenu();
m_timers->DrawDebugMenu();
m_mdec->DrawDebugMenu();
}
void System::DrawDebugWindows()
@ -334,4 +335,5 @@ void System::DrawDebugWindows()
m_gpu->DrawDebugWindows();
m_spu->DrawDebugWindow();
m_timers->DrawDebugWindow();
m_mdec->DrawDebugWindow();
}