Sunsoft1 - savestate support

This commit is contained in:
andres.delikat 2011-04-17 20:56:35 +00:00
parent 043f8c7a70
commit db42bbfe6b
1 changed files with 7 additions and 0 deletions

View File

@ -63,5 +63,12 @@ Other chips used: Sunsoft-1
left_piece = value & 7 & chr_mask;
right_piece = (value >> 4) & 7 & chr_mask;
}
public override void SyncStateBinary(BinarySerializer ser)
{
base.SyncStateBinary(ser);
ser.Sync(ref left_piece);
ser.Sync(ref right_piece);
}
}
}