parent
8e852622a1
commit
82f0cb2f46
12
TIA.cs
12
TIA.cs
|
@ -560,6 +560,10 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
_scanlinebuffer[_CurrentScanLine * ScreenWidth + x] = pixelColor;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
|
||||
|
||||
// ---- Things that happen every time ----
|
||||
|
||||
|
@ -621,10 +625,11 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
// Increase by 1, max of 15
|
||||
|
||||
test_count_p0++;
|
||||
if (test_count_p0<16)
|
||||
if (test_count_p0 < 16)
|
||||
{
|
||||
_hmove.Player0Cnt++;
|
||||
} else
|
||||
}
|
||||
else
|
||||
{
|
||||
_hmove.Player0Cnt = 0;
|
||||
}
|
||||
|
@ -658,7 +663,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
}
|
||||
else
|
||||
{
|
||||
_hmove.Missile0Cnt=0;
|
||||
_hmove.Missile0Cnt = 0;
|
||||
}
|
||||
//_hmove.Missile0Cnt %= 16;
|
||||
}
|
||||
|
@ -770,6 +775,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
_hmove.HMoveCnt = 0;
|
||||
_hmove.DecCntEnabled = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Increment the hsync counter
|
||||
|
|
Loading…
Reference in New Issue