From 2fc4683e6b55a7284c98d23747aa7c367ff05a97 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Sun, 2 Apr 2023 06:56:32 -0700 Subject: [PATCH] Fix edge case with C64 states when CurrentDisk is different --- .../Computers/Commodore64/C64.IStatable.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/BizHawk.Emulation.Cores/Computers/Commodore64/C64.IStatable.cs b/src/BizHawk.Emulation.Cores/Computers/Commodore64/C64.IStatable.cs index 3967538d00..58bc19667f 100644 --- a/src/BizHawk.Emulation.Cores/Computers/Commodore64/C64.IStatable.cs +++ b/src/BizHawk.Emulation.Cores/Computers/Commodore64/C64.IStatable.cs @@ -11,7 +11,12 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64 ser.Sync(nameof(Frame), ref _frame); ser.Sync(nameof(IsLagFrame), ref _isLagFrame); ser.Sync(nameof(LagCount), ref _lagCount); + var oldDisk = _currentDisk; ser.Sync(nameof(CurrentDisk), ref _currentDisk); + if (oldDisk != _currentDisk) + { + InitDisk(); + } ser.Sync("PreviousDiskPressed", ref _prevPressed); ser.Sync("NextDiskPressed", ref _nextPressed); ser.BeginSection("Board");