fix intellivision text states - another duplicate value saved

This commit is contained in:
adelikat 2020-02-16 13:30:17 -06:00
parent 77598ce2b2
commit c29136cacb
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ namespace BizHawk.Emulation.Cores.Components.CP1610
ser.Sync(nameof(IntRM), ref IntRM); ser.Sync(nameof(IntRM), ref IntRM);
ser.Sync(nameof(BusRq), ref BusRq); ser.Sync(nameof(BusRq), ref BusRq);
ser.Sync(nameof(BusAk), ref BusAk); ser.Sync(nameof(BusAk), ref BusAk);
ser.Sync(nameof(BusRq), ref BusRq); ser.Sync("Duplicate_Bus_Rq", ref BusRq); // Can't remove this or it will break backward compatibility with binary states
ser.Sync(nameof(Interruptible), ref Interruptible); ser.Sync(nameof(Interruptible), ref Interruptible);
ser.Sync(nameof(Interrupted), ref Interrupted); ser.Sync(nameof(Interrupted), ref Interrupted);
ser.Sync("Toal_executed_cycles", ref TotalExecutedCycles); ser.Sync("Toal_executed_cycles", ref TotalExecutedCycles);