diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/CassettePort/Tape.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/CassettePort/Tape.cs index 262f999fd2..2c04d1bf09 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/CassettePort/Tape.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/CassettePort/Tape.cs @@ -14,9 +14,10 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.CassettePort */ class Tape { - private byte[] tapeData; - private byte version; - private uint pos, cycle, start, end; + private readonly byte[] tapeData; + private readonly byte version; + private uint pos, cycle; + private readonly uint start, end; public Tape(byte version, byte[] tapeData, uint start, uint end) { @@ -88,5 +89,13 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.CassettePort } return result; } + + public void SyncState(Serializer ser) + { + ser.BeginSection("tape"); + ser.Sync("pos", ref pos); + ser.Sync("cycle", ref cycle); + ser.EndSection(); + } } }