a2600 - remove some unused methods
This commit is contained in:
parent
948a2341a2
commit
bee7f4f059
|
@ -208,7 +208,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
||||||
{
|
{
|
||||||
PrescalerCount--;
|
PrescalerCount--;
|
||||||
|
|
||||||
if ((PrescalerCount == 0) || Overflowed)
|
if (PrescalerCount == 0 || Overflowed)
|
||||||
{
|
{
|
||||||
Value--;
|
Value--;
|
||||||
|
|
||||||
|
|
|
@ -74,17 +74,6 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Resp_check()
|
|
||||||
{
|
|
||||||
if (_draw_signaled)
|
|
||||||
{
|
|
||||||
if (_startSignal < 161)
|
|
||||||
{
|
|
||||||
_startSignal -= _startSignal - 156;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SyncState(Serializer ser)
|
public void SyncState(Serializer ser)
|
||||||
{
|
{
|
||||||
ser.BeginSection("Ball");
|
ser.BeginSection("Ball");
|
||||||
|
|
|
@ -93,31 +93,6 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Resp_check()
|
|
||||||
{
|
|
||||||
if (_draw_signaled)
|
|
||||||
{
|
|
||||||
if (_startSignal < 17)
|
|
||||||
{
|
|
||||||
_startSignal -= _startSignal - 12;
|
|
||||||
}
|
|
||||||
|
|
||||||
else if (_startSignal < 33)
|
|
||||||
{
|
|
||||||
_startSignal -= _startSignal - 28;
|
|
||||||
}
|
|
||||||
|
|
||||||
else if (_startSignal < 65)
|
|
||||||
{
|
|
||||||
_startSignal -= _startSignal - 60;
|
|
||||||
}
|
|
||||||
else if (_startSignal < 161)
|
|
||||||
{
|
|
||||||
_startSignal -= _startSignal - 156;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SyncState(Serializer ser)
|
public void SyncState(Serializer ser)
|
||||||
{
|
{
|
||||||
ser.BeginSection("Missile");
|
ser.BeginSection("Missile");
|
||||||
|
|
Loading…
Reference in New Issue