Fix typo, add back state to savestate.

This commit is contained in:
Unknown W. Brackets 2013-04-09 02:18:09 -07:00
parent 96d5fdcabb
commit 6cbd1b5205
2 changed files with 2 additions and 5 deletions

View file

@ -187,6 +187,7 @@ void __KernelDoState(PointerWrap &p)
__ImposeDoState(p);
__IoDoState(p);
__MpegDoState(p);
__NetDoState(p);
__PowerDoState(p);
__PsmfDoState(p);
__PsmfPlayerDoState(p);
@ -197,9 +198,6 @@ void __KernelDoState(PointerWrap &p)
__UsbDoState(p);
__PPGeDoState(p);
// Didn't feel like breaking save states right now for this. Next time you have to change something, uncomment.
// __NetDoState(p);
__InterruptsDoStateLate(p);
__KernelThreadingDoStateLate(p);

View file

@ -687,8 +687,7 @@ void GPUCommon::DoState(PointerWrap &p) {
p.Do(gpuState);
p.Do(isbreak);
p.Do(drawCompleteTicks);
// TODO
//p.Do(busyTicks);
p.Do(busyTicks);
p.DoMarker("GPUCommon");
}