From 2545bfbb4e5012a70b6c588ceb74e5811a43466c Mon Sep 17 00:00:00 2001 From: saxxonpike Date: Mon, 3 Dec 2012 08:42:50 +0000 Subject: [PATCH] commodore64: actually connect the cartridge state to the serializer --- BizHawk.Emulation/Computers/Commodore64/C64.Core.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation/Computers/Commodore64/C64.Core.cs b/BizHawk.Emulation/Computers/Commodore64/C64.Core.cs index a00d12c398..842aa555a0 100644 --- a/BizHawk.Emulation/Computers/Commodore64/C64.Core.cs +++ b/BizHawk.Emulation/Computers/Commodore64/C64.Core.cs @@ -234,7 +234,7 @@ namespace BizHawk.Emulation.Computers.Commodore64 ser.EndSection(); ser.BeginSection("cart"); - + cartPort.SyncState(ser); ser.EndSection(); } }