Apple II - add status of black/white apple keys to savestates

This commit is contained in:
adelikat 2020-02-22 15:01:56 -06:00
parent c77c5e1f8f
commit 959a06e6bb
1 changed files with 2 additions and 0 deletions

View File

@ -47,6 +47,8 @@ namespace BizHawk.Emulation.Cores.Computers.AppleII
ser.Sync("PrevDiskPressed", ref _prevPressed);
ser.Sync("NextDiskPressed", ref _nextPressed);
ser.Sync("CurrentDisk", ref _currentDisk);
ser.Sync("WhiteAppleDown", ref Keyboard.WhiteAppleDown);
ser.Sync("BlackAppleDown", ref Keyboard.BlackAppleDown);
ser.BeginSection("Events");
_machine.Events.Sync(ser);