From e99a59678b27a9432c27bdedb9e3543de0478e18 Mon Sep 17 00:00:00 2001 From: Gyorgy Szombathelyi Date: Sat, 22 Aug 2020 00:11:44 +0200 Subject: [PATCH] Spy Hunter, 280ZZZAP: better brakes --- .../SpyHunter_MiST/rtl/spy_hunter_control.vhd | 3 ++- .../280ZZZAP_MiST/rtl/spy_hunter_control.vhd | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Arcade_MiST/Midway MCR Scroll/SpyHunter_MiST/rtl/spy_hunter_control.vhd b/Arcade_MiST/Midway MCR Scroll/SpyHunter_MiST/rtl/spy_hunter_control.vhd index 7ca5b826..a42f8648 100644 --- a/Arcade_MiST/Midway MCR Scroll/SpyHunter_MiST/rtl/spy_hunter_control.vhd +++ b/Arcade_MiST/Midway MCR Scroll/SpyHunter_MiST/rtl/spy_hunter_control.vhd @@ -99,7 +99,8 @@ begin gas_timer <= (others => '0'); else if vsync_r ='0' and vsync = '1' then - if (gas_timer >= 5 and (gas_minus_r = '1' or gas_plus_r = '1')) then --tune inc/dec rate + if (gas_timer >= 5 and gas_plus_r = '1') or + (gas_timer >= 3 and gas_minus_r = '1') then --tune inc/dec rate gas_timer <= (others => '0'); else gas_timer <= gas_timer + 1; diff --git a/Arcade_MiST/Midway-Taito 8080 Hardware/280ZZZAP_MiST/rtl/spy_hunter_control.vhd b/Arcade_MiST/Midway-Taito 8080 Hardware/280ZZZAP_MiST/rtl/spy_hunter_control.vhd index 7ca5b826..a42f8648 100644 --- a/Arcade_MiST/Midway-Taito 8080 Hardware/280ZZZAP_MiST/rtl/spy_hunter_control.vhd +++ b/Arcade_MiST/Midway-Taito 8080 Hardware/280ZZZAP_MiST/rtl/spy_hunter_control.vhd @@ -99,7 +99,8 @@ begin gas_timer <= (others => '0'); else if vsync_r ='0' and vsync = '1' then - if (gas_timer >= 5 and (gas_minus_r = '1' or gas_plus_r = '1')) then --tune inc/dec rate + if (gas_timer >= 5 and gas_plus_r = '1') or + (gas_timer >= 3 and gas_minus_r = '1') then --tune inc/dec rate gas_timer <= (others => '0'); else gas_timer <= gas_timer + 1;