diff options
| author | nitsuja <nitsuja-@hotmail.com> | 2012-01-01 13:52:31 -0800 |
|---|---|---|
| committer | skidau <skidau@gmail.com> | 2012-05-26 13:18:08 +1000 |
| commit | ae242e5675b71c6c7019b31bde0abd61ba8be875 (patch) | |
| tree | 131a9f47d6938e759fe66132bd6a8b0b6ed2828b /Source/Core/VideoCommon/Src/MainBase.cpp | |
| parent | 2be579e8bad372e7a7433a7d6300939ecef4c654 (diff) | |
added some missing VideoBackendHardware data to savestates. I think this makes savestates more stable (fewer "GFX FIFO: Unknown Opcode" errors) in dual core mode.
also added some extra verification markers around here, to potentially give better info on future version mismatches
Diffstat (limited to 'Source/Core/VideoCommon/Src/MainBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Src/MainBase.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/Src/MainBase.cpp b/Source/Core/VideoCommon/Src/MainBase.cpp index 4df2361ea9..df29fef606 100644 --- a/Source/Core/VideoCommon/Src/MainBase.cpp +++ b/Source/Core/VideoCommon/Src/MainBase.cpp @@ -186,6 +186,14 @@ void VideoBackendHardware::InitializeShared() void VideoBackendHardware::DoState(PointerWrap& p) { VideoCommon_DoState(p); + p.DoMarker("VideoCommon"); + + p.Do(s_swapRequested); + p.Do(s_efbAccessRequested); + p.Do(s_beginFieldArgs); + p.Do(s_accessEFBArgs); + p.Do(s_AccessEFBResult); + p.DoMarker("VideoBackendHardware"); // Refresh state. if (p.GetMode() == PointerWrap::MODE_READ) |
