diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip6510.IDebuggable.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip6510.IDebuggable.cs index f390bbf0f5..3db286bc80 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip6510.IDebuggable.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip6510.IDebuggable.cs @@ -154,6 +154,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS [SaveState.DoNotSave] private IMemoryCallbackSystem _memoryCallbacks = new MemoryCallbackSystem(); [SaveState.DoNotSave] - IMemoryCallbackSystem IDebuggable.MemoryCallbacks { get; } + IMemoryCallbackSystem IDebuggable.MemoryCallbacks { get { return _memoryCallbacks; } } } }