From: Lukas Krickl Date: Thu, 1 Jan 2026 16:51:14 +0000 (+0100) Subject: update: fixed rendering of actors... X-Git-Url: https://git.krickl.dev/?a=commitdiff_plain;h=82f508fbc2ac92679822b86b7c369d11f9b8c845;p=gbrg%2F.git update: fixed rendering of actors... The code was in fact not correctly checking if an exit was present. --- 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: