Oops
This commit is contained in:
parent
391be49081
commit
0a22275b59
|
@ -105,6 +105,9 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
case 1024 * 4: // 4K
|
||||
return new Multicart4K(gameTotal);
|
||||
break;
|
||||
case 1024 * 8: // 8K
|
||||
return new Multicart8K(gameTotal);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -13,6 +13,12 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
private int _gameTotal;
|
||||
private int _currentGame;
|
||||
|
||||
public Multicart8K(int gametotal)
|
||||
{
|
||||
_gameTotal = gametotal;
|
||||
_currentGame = 0;
|
||||
}
|
||||
|
||||
public override void SyncState(Serializer ser)
|
||||
{
|
||||
ser.Sync("bank_4k", ref _bank4K);
|
||||
|
|
Loading…
Reference in New Issue