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:
Jake.Stine 2010-06-28 21:26:47 +00:00
parent 51638cc189
commit a297b9fe1c
1 changed files with 5 additions and 0 deletions

View File

@ -159,6 +159,7 @@ __forceinline void gsWrite8(u32 mem, u8 value)
default:
*PS2GS_BASE(mem) = value;
break;
}
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);
Freeze(CSR_SIGNAL_Pending);
if( GetVersion() > 0 )
Freeze(gsRegionMode);
gifPathFreeze();
}