From b01436bdc6ec46bd88fb7d65b6ba79f90f0fb3a1 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 1 Jun 2025 01:14:18 +1000 Subject: [PATCH] Include Stella's B&W/colour switch in savestates fixes b5e13206c --- .../Consoles/Atari/Stella/Stella.IStatable.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IStatable.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IStatable.cs index 3d970b4b32..2970caf961 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IStatable.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IStatable.cs @@ -13,6 +13,7 @@ namespace BizHawk.Emulation.Cores.Atari.Stella // other variables _leftDifficultyToggled = reader.ReadBoolean(); _rightDifficultyToggled = reader.ReadBoolean(); + _colorVideoToggled = reader.ReadBoolean(); Frame = reader.ReadInt32(); LagCount = reader.ReadInt32(); IsLagFrame = reader.ReadBoolean(); @@ -27,6 +28,7 @@ namespace BizHawk.Emulation.Cores.Atari.Stella // other variables writer.Write(_leftDifficultyToggled); writer.Write(_rightDifficultyToggled); + writer.Write(_colorVideoToggled); writer.Write(Frame); writer.Write(LagCount); writer.Write(IsLagFrame);