mirror of https://github.com/PCSX2/pcsx2.git
This is part 2 of my PAL timings savestate fix, from r3331. Dunno how I missed this one either.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3338 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
51638cc189
commit
a297b9fe1c
|
@ -159,6 +159,7 @@ __forceinline void gsWrite8(u32 mem, u8 value)
|
||||||
|
|
||||||
default:
|
default:
|
||||||
*PS2GS_BASE(mem) = value;
|
*PS2GS_BASE(mem) = value;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
GIF_LOG("GS write 8 at %8.8lx with data %8.8lx", mem, value);
|
GIF_LOG("GS write 8 at %8.8lx with data %8.8lx", mem, value);
|
||||||
}
|
}
|
||||||
|
@ -437,5 +438,9 @@ void SaveStateBase::gsFreeze()
|
||||||
{
|
{
|
||||||
FreezeMem(PS2MEM_GS, 0x2000);
|
FreezeMem(PS2MEM_GS, 0x2000);
|
||||||
Freeze(CSR_SIGNAL_Pending);
|
Freeze(CSR_SIGNAL_Pending);
|
||||||
|
|
||||||
|
if( GetVersion() > 0 )
|
||||||
|
Freeze(gsRegionMode);
|
||||||
|
|
||||||
gifPathFreeze();
|
gifPathFreeze();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue