From 72d5e6b33e5fec18defeab6dbc9790e04abcca3e Mon Sep 17 00:00:00 2001 From: giomba Date: Thu, 23 Apr 2020 12:10:08 +0200 Subject: [PATCH] to pass the level, you have to get at least 0x40 (64) points --- src/game.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.asm b/src/game.asm index e433baf..cee09b0 100644 --- a/src/game.asm +++ b/src/game.asm @@ -207,7 +207,7 @@ foodEaten: inx stx length - cpx #$10 ; check if level is finished + cpx #$40 ; check if level is finished bne genFood ; if not, skip clc lda score ; else increment total score