Oops, Clean Up

This commit is contained in:
alyosha-tas 2017-05-29 16:44:56 -04:00 committed by GitHub
parent 19de6b1cee
commit d825769cf5
1 changed files with 0 additions and 7 deletions

View File

@ -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;
}
}
}