From aadd2a48a08f4428309015a9e7a426be08c3b15e Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 24 Mar 2026 07:57:10 +0100 Subject: Decrease a bit the items' timer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit While playtesting I found the given timer's value a bit too much. Signed-off-by: Miquel Sabaté Solà --- src/items.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/items.s') diff --git a/src/items.s b/src/items.s index 947e96e..12f551f 100644 --- a/src/items.s +++ b/src/items.s @@ -105,7 +105,7 @@ .ifdef PARTIAL ITEM_TIMER = HZ * 4 .else - ITEM_TIMER = HZ * 25 + ITEM_TIMER = HZ * 20 .endif ITEM_TIMER_LO = ITEM_TIMER & $00FF ITEM_TIMER_HI = (ITEM_TIMER & $FF00) >> 8 -- cgit v1.2.3