diff --git a/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IStatable.cs b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IStatable.cs index fde2b4dccb..5cc1b5b323 100644 --- a/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IStatable.cs +++ b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.IStatable.cs @@ -21,12 +21,14 @@ namespace BizHawk.Emulation.Cores.Computers.AppleII public void SaveStateBinary(BinaryWriter writer) { + writer.Write(Frame); writer.Write(CurrentDisk); _machine.SaveState(writer); } public void LoadStateBinary(BinaryReader reader) { + Frame = reader.ReadInt32(); CurrentDisk = reader.ReadInt32(); InitDisk(); _machine.LoadState(reader);