From: Lukas Krickl Date: Wed, 17 Dec 2025 07:15:32 +0000 (+0100) Subject: player: fixed turn direction X-Git-Url: https://git.krickl.dev/?a=commitdiff_plain;h=b5c6df5ffd6c37f744bf622057a52fee23cfe07b;p=gbrg%2F.git player: fixed turn direction --- diff --git a/src/player.s b/src/player.s index e5c3785..d2e3baa 100644 --- a/src/player.s +++ b/src/player.s @@ -3,17 +3,17 @@ ; table of direction to pick on right turn player_direction_turn_right: - .db EAST ; SOUTH - .db WEST ; NORTH - .db SOUTH ; EAST - .db NORTH ; WEST - - ; table of directions to pick on left turn -player_direction_turn_left: - .db WEST ; SOUTH + .db WEST ; SOUTH .db EAST ; NORTH .db NORTH ; EAST .db SOUTH ; WEST + + ; table of directions to pick on left turn +player_direction_turn_left: + .db EAST ; SOUTH + .db WEST ; NORTH + .db SOUTH ; EAST + .db NORTH ; WEST ; sets up the player actor