diff --git a/Source/Core/Core/State.cpp b/Source/Core/Core/State.cpp index 3ec1eac913..9ad992e0d0 100644 --- a/Source/Core/Core/State.cpp +++ b/Source/Core/Core/State.cpp @@ -74,7 +74,7 @@ static Common::Event g_compressAndDumpStateSyncEvent; static std::thread g_save_thread; // Don't forget to increase this after doing changes on the savestate system -static const u32 STATE_VERSION = 93; // Last changed in PR 6389 +static const u32 STATE_VERSION = 94; // Last changed in PR 6456 // Maps savestate versions to Dolphin versions. // Versions after 42 don't need to be added to this list, diff --git a/Source/Core/VideoCommon/MainBase.cpp b/Source/Core/VideoCommon/MainBase.cpp index fcad23ccbf..02eef33e08 100644 --- a/Source/Core/VideoCommon/MainBase.cpp +++ b/Source/Core/VideoCommon/MainBase.cpp @@ -31,14 +31,6 @@ static Common::Flag s_FifoShuttingDown; -static volatile struct -{ - u32 xfbAddr; - u32 fbWidth; - u32 fbStride; - u32 fbHeight; -} s_beginFieldArgs; - void VideoBackendBase::Video_ExitLoop() { Fifo::ExitGpuLoop(); @@ -175,7 +167,6 @@ void VideoBackendBase::InitializeShared() m_initialized = true; s_FifoShuttingDown.Clear(); - memset((void*)&s_beginFieldArgs, 0, sizeof(s_beginFieldArgs)); m_invalid = false; frameCount = 0; @@ -221,9 +212,6 @@ void VideoBackendBase::DoState(PointerWrap& p) VideoCommon_DoState(p); p.DoMarker("VideoCommon"); - p.Do(s_beginFieldArgs); - p.DoMarker("VideoBackendBase"); - // Refresh state. if (p.GetMode() == PointerWrap::MODE_READ) {