From cd8aa7cfa6cafdb968d4561aee1cf1bdaab60438 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Wed, 18 Mar 2026 21:38:50 +0100 Subject: Increase the item's timer for non-dev builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set a more realistic value for the timer for non-dev builds. Signed-off-by: Miquel Sabaté Solà --- src/items.s | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/items.s b/src/items.s index 885ce7b..c7d0d05 100644 --- a/src/items.s +++ b/src/items.s @@ -97,7 +97,11 @@ FUEL_SHUTTLE_Y = $B8 ;; Constants for 'Items::zp_timer'. - ITEM_TIMER = HZ * 4 + .ifdef PARTIAL + ITEM_TIMER = HZ * 4 + .else + ITEM_TIMER = HZ * 25 + .endif ITEM_TIMER_LO = ITEM_TIMER & $00FF ITEM_TIMER_HI = (ITEM_TIMER & $FF00) >> 8 -- cgit v1.2.3