From 848b669ce438d56dbf5021d7139c8d46ea725d7e Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Fri, 26 Sep 2025 18:15:50 +0200 Subject: [PATCH] player: the player now spans in the bottom center of the map --- src/player.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/player.s b/src/player.s index 5fc83b9..25b245d 100644 --- a/src/player.s +++ b/src/player.s @@ -3,9 +3,9 @@ ; sets up the player actor player_init: ; initial position - ld a, 0 + ld a, 0x60 ld [player+act_pos_y], a - ld a, 0 + ld a, 0x40 ld [player+act_pos_x], a ld a, 0x30 ; initial next scroll -- 2.30.2