From 2f140cfb7ea73e631fce086327bcb3a674758b0e Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 1 Apr 2025 16:23:34 +0200 Subject: player: First PAL implementation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The steps by which a player increases its current velocity to reach the target one has been adapted on PAL, so every five frames it takes an extra step compared to NTSC. This at least brings PAL to grow its values at the same rate as NTSC. Signed-off-by: Miquel Sabaté Solà --- src/vectors.s | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/vectors.s') diff --git a/src/vectors.s b/src/vectors.s index f4c515c..f9aa31d 100644 --- a/src/vectors.s +++ b/src/vectors.s @@ -85,6 +85,11 @@ lda #$02 sta OAM::DMA + ;; PAL-specific code + .ifdef PAL + jsr Driver::pal_handler + .endif + ;; TODO: some actions here will depend on the status of the game... ;; Decrease title timer. -- cgit v1.2.3