Oops, Clean Up
This commit is contained in:
parent
19de6b1cee
commit
d825769cf5
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue