diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-18 21:38:50 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-18 21:38:50 +0100 |
| commit | cd8aa7cfa6cafdb968d4561aee1cf1bdaab60438 (patch) | |
| tree | e0da25d35afcb502cec53968ae2af931748fde99 /src/items.s | |
| parent | 8f2acc62a46a0233151faadad1a7d2a828bef3a4 (diff) | |
| download | jetpac.nes-cd8aa7cfa6cafdb968d4561aee1cf1bdaab60438.tar.gz jetpac.nes-cd8aa7cfa6cafdb968d4561aee1cf1bdaab60438.zip | |
Increase the item's timer for non-dev builds
Set a more realistic value for the timer for non-dev builds.
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'src/items.s')
| -rw-r--r-- | src/items.s | 6 |
1 files changed, 5 insertions, 1 deletions
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 |
