From 3fa34edc41512d66f3f5b5ee5dde447f2251a9c3 Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Sat, 19 Oct 2024 06:31:16 +0200 Subject: [PATCH] player -> tile collision from top --- src/collision.s | 2 +- src/map.s | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/collision.s b/src/collision.s index 375043c..7afc985 100644 --- a/src/collision.s +++ b/src/collision.s @@ -23,7 +23,7 @@ #endmacro collision_player_top: - col_head 1 + col_head 2 ; center left col_point 0, 0 ; center right diff --git a/src/map.s b/src/map.s index f21c1ea..16a6146 100644 --- a/src/map.s +++ b/src/map.s @@ -157,7 +157,7 @@ base_room: .db TCORNBOL, TWALLD1, TWALLD1, TWALLD1, TDOORDL, TDOORDR, TWALLD1, TWALLD1, TWALLD1, TCORNBOR ; tile flags for the room base_room_flags: -.db RF_WALL, 0, 0, 0, 0, 0, 0, 0, 0, 0 +.db RF_WALL, RF_WALL, RF_WALL, RF_WALL, 0, 0, RF_WALL, RF_WALL, RF_WALL, RF_WALL .db 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 .db 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 .db 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -- 2.30.2