diff --git a/Core/HLE/sceKernel.cpp b/Core/HLE/sceKernel.cpp index 40f13af451..de6491c956 100644 --- a/Core/HLE/sceKernel.cpp +++ b/Core/HLE/sceKernel.cpp @@ -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); diff --git a/GPU/GPUCommon.cpp b/GPU/GPUCommon.cpp index 68f8a5c062..842211566b 100644 --- a/GPU/GPUCommon.cpp +++ b/GPU/GPUCommon.cpp @@ -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"); }