DMA: Add debug window

This commit is contained in:
Connor McLaughlin
2020-09-26 19:33:10 +10:00
parent 62dbaaf02c
commit 29467d40c8
7 changed files with 94 additions and 0 deletions

View File

@ -936,6 +936,8 @@ void CommonHostInterface::DrawDebugWindows()
g_spu.DrawDebugStateWindow();
if (g_settings.debugging.show_mdec_state)
g_mdec.DrawDebugStateWindow();
if (g_settings.debugging.show_dma_state)
g_dma.DrawDebugStateWindow();
}
void CommonHostInterface::DoFrameStep()