System: Include SIO in save state

This commit is contained in:
Connor McLaughlin 2019-12-10 00:28:58 +10:00
parent b6aa2a6496
commit fb0aad0917
1 changed files with 3 additions and 0 deletions

View File

@ -278,6 +278,9 @@ bool System::DoState(StateWrapper& sw)
if (!sw.DoMarker("MDEC") || !m_mdec->DoState(sw))
return false;
if (!sw.DoMarker("SIO") || !m_sio->DoState(sw))
return false;
return !sw.HasError();
}