aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-03-24 07:57:10 +0100
committerMiquel Sabaté Solà <mssola@mssola.com>2026-03-24 07:57:10 +0100
commitaadd2a48a08f4428309015a9e7a426be08c3b15e (patch)
tree49f34f30423096be06ed7238f665f86ddb3b418f
parentb779e7dc3d44f7b9d90aeeee91ed36cf57d65e95 (diff)
downloadjetpac.nes-aadd2a48a08f4428309015a9e7a426be08c3b15e.tar.gz
jetpac.nes-aadd2a48a08f4428309015a9e7a426be08c3b15e.zip
Decrease a bit the items' timer
While playtesting I found the given timer's value a bit too much. Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
-rw-r--r--src/items.s2
1 files changed, 1 insertions, 1 deletions
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