HW: Pass System to functions.

This commit is contained in:
Admiral H. Curtiss
2023-03-12 17:38:48 +01:00
parent 137b9d1da1
commit 026b6a3e0f
4 changed files with 14 additions and 13 deletions

View File

@ -230,7 +230,7 @@ static void DoState(PointerWrap& p)
p.DoMarker("CoreTiming");
// HW needs to be restored before PowerPC because the data cache might need to be flushed.
HW::DoState(p);
HW::DoState(system, p);
p.DoMarker("HW");
PowerPC::DoState(p);