diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0007.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0007.cs index 6aeb08fd1b..1b16dedb79 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0007.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/Cartridge/Mapper0007.cs @@ -10,7 +10,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge private int _bankNumber; private bool _disabled; - private int _latchedval; // Fun Play mapper // bank switching is done from DE00 @@ -21,7 +20,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge pinExRom = exrom; _disabled = false; - _latchedval = 0; // load data into the banks from the list for (var j = 0; j < 16; j++) @@ -83,11 +81,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge } } } - - public override int ReadDF00(int addr) - { - return _latchedval; - } } }