MDEC: Fix broken stats window

This commit is contained in:
Connor McLaughlin
2019-10-26 13:31:21 +10:00
parent 540e942a46
commit ed6d0e34de
3 changed files with 5 additions and 13 deletions

View File

@ -1018,6 +1018,8 @@ void SDLInterface::DrawDebugWindows()
m_system->GetTimers()->DrawDebugStateWindow();
if (debug_settings.show_spu_state)
m_system->GetSPU()->DrawDebugStateWindow();
if (debug_settings.show_mdec_state)
m_system->GetMDEC()->DrawDebugStateWindow();
}
void SDLInterface::AddOSDMessage(const char* message, float duration /*= 2.0f*/)