From 0de16bc8b9b73f6393eaa896407b0c42fccd0a9a Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sun, 3 Nov 2019 07:41:22 -0500 Subject: [PATCH] A2600: journey escape fixes #1614 --- BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs index 43f3f88971..cfa7bc84b8 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Tia/TIA.cs @@ -352,7 +352,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 if (_hmp0Delay > 0) { _hmp0Delay++; - if (_hmp0Delay == 4) + if (_hmp0Delay == 5) { _hmp0Delay = 0; _player0.HM = _hmp0Val; @@ -362,7 +362,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 if (_hmp1Delay > 0) { _hmp1Delay++; - if (_hmp1Delay == 4) + if (_hmp1Delay == 5) { _hmp1Delay = 0; _player1.HM = _hmp1Val; @@ -372,7 +372,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 if (_hmm0Delay > 0) { _hmm0Delay++; - if (_hmm0Delay == 4) + if (_hmm0Delay == 5) { _hmm0Delay = 0; _player0.Missile.Hm = _hmm0Val; @@ -382,7 +382,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 if (_hmm1Delay > 0) { _hmm1Delay++; - if (_hmm1Delay == 4) + if (_hmm1Delay == 5) { _hmm1Delay = 0; _player1.Missile.Hm = _hmm1Val; @@ -392,7 +392,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 if (_hmbDelay > 0) { _hmbDelay++; - if (_hmbDelay == 4) + if (_hmbDelay == 5) { _hmbDelay = 0; _ball.HM = _hmbVal;