SPU: Save state support

This commit is contained in:
Connor McLaughlin
2019-10-11 16:54:21 +10:00
parent 51ea81eebf
commit d88da93a55
3 changed files with 35 additions and 2 deletions

View File

@ -112,7 +112,7 @@ bool System::DoState(StateWrapper& sw)
if (!sw.DoMarker("Timers") || !m_timers->DoState(sw))
return false;
if (!sw.DoMarker("SPU") || !m_timers->DoState(sw))
if (!sw.DoMarker("SPU") || !m_spu->DoState(sw))
return false;
if (!sw.DoMarker("MDEC") || !m_mdec->DoState(sw))