Include Stella's B&W/colour switch in savestates

fixes b5e13206c
This commit is contained in:
YoshiRulz 2025-06-01 01:14:18 +10:00
parent 6190a0573b
commit b01436bdc6
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 0 deletions

View File

@ -13,6 +13,7 @@ namespace BizHawk.Emulation.Cores.Atari.Stella
// other variables // other variables
_leftDifficultyToggled = reader.ReadBoolean(); _leftDifficultyToggled = reader.ReadBoolean();
_rightDifficultyToggled = reader.ReadBoolean(); _rightDifficultyToggled = reader.ReadBoolean();
_colorVideoToggled = reader.ReadBoolean();
Frame = reader.ReadInt32(); Frame = reader.ReadInt32();
LagCount = reader.ReadInt32(); LagCount = reader.ReadInt32();
IsLagFrame = reader.ReadBoolean(); IsLagFrame = reader.ReadBoolean();
@ -27,6 +28,7 @@ namespace BizHawk.Emulation.Cores.Atari.Stella
// other variables // other variables
writer.Write(_leftDifficultyToggled); writer.Write(_leftDifficultyToggled);
writer.Write(_rightDifficultyToggled); writer.Write(_rightDifficultyToggled);
writer.Write(_colorVideoToggled);
writer.Write(Frame); writer.Write(Frame);
writer.Write(LagCount); writer.Write(LagCount);
writer.Write(IsLagFrame); writer.Write(IsLagFrame);