Save States: Fixed corruption on some save states/rewinding caused by work ram address not being saved

This commit is contained in:
Sour 2019-10-14 17:10:56 -04:00
parent 5b0d0d6886
commit 0bcb2d800e

View file

@ -453,4 +453,5 @@ void MemoryManager::Serialize(Serializer &s)
s.Stream(_masterClock, _openBus, _cpuSpeed, _hClock, _dramRefreshPosition, _hdmaInitPosition);
s.StreamArray(_workRam, MemoryManager::WorkRamSize);
s.StreamArray(_hasEvent, sizeof(_hasEvent));
s.Stream(_registerHandlerB.get());
}