diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-24 07:57:10 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-03-24 07:57:10 +0100 |
| commit | aadd2a48a08f4428309015a9e7a426be08c3b15e (patch) | |
| tree | 49f34f30423096be06ed7238f665f86ddb3b418f /src/items.s | |
| parent | b779e7dc3d44f7b9d90aeeee91ed36cf57d65e95 (diff) | |
| download | jetpac.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>
Diffstat (limited to 'src/items.s')
| -rw-r--r-- | src/items.s | 2 |
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 |
