GPU: Use correct clocks for NTSC region

Fixes sync drift in Bust-a-Move 1/2.
This commit is contained in:
Connor McLaughlin
2020-06-07 17:36:45 +10:00
parent abc627de9c
commit b4e45e865a
4 changed files with 76 additions and 17 deletions

View File

@ -260,6 +260,7 @@ void System::InitializeComponents()
m_timers->Initialize(this, m_interrupt_controller.get(), m_gpu.get());
m_spu->Initialize(this, m_dma.get(), m_interrupt_controller.get());
m_mdec->Initialize(this, m_dma.get());
m_gpu->UpdateSettings();
UpdateThrottlePeriod();
}