From df13b27efd3c7fd52bb403668c8593c8d8ebef41 Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Mon, 22 Nov 2021 10:06:55 -0500 Subject: [PATCH] peasant: fix build with newer ca65 doesn't like negative constants --- games/peasant/kerrek_actions.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/peasant/kerrek_actions.s b/games/peasant/kerrek_actions.s index cdffe7a0..480c77f6 100644 --- a/games/peasant/kerrek_actions.s +++ b/games/peasant/kerrek_actions.s @@ -53,7 +53,7 @@ kerrek_alive_not_there: kerrek_not_there: lda KERREK_STATE - and #(~KERREK_ONSCREEN) + and #<(~KERREK_ONSCREEN) sta KERREK_STATE rts