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