From 82f508fbc2ac92679822b86b7c369d11f9b8c845 Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Thu, 1 Jan 2026 17:51:14 +0100 Subject: [PATCH] update: fixed rendering of actors... The code was in fact not correctly checking if an exit was present. --- src/update.s | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/update.s b/src/update.s index d763be2..8a5dd56 100644 --- a/src/update.s +++ b/src/update.s @@ -41,10 +41,11 @@ update_game_over: ; check if we can go forward one more time ; if not jump to @done_act_draw ld de, t_flags0 + add hl, de ld b, [hl] ld a, [dir_tf_forward] and a, b - jp nz, @done_act_draw + jp z, @done_act_draw #endmacro update_game: -- 2.30.2