peasant: fix scoring when it's 10 points

we should be using BCD
This commit is contained in:
Vince Weaver 2021-11-29 00:53:27 -05:00
parent e41bad95b7
commit f18ddaa786
2 changed files with 2 additions and 2 deletions

View File

@ -243,7 +243,7 @@ kerrek_get_belt_finally:
ora #INV1_KERREK_BELT
sta INVENTORY_1
lda #10
lda #$10 ; it's BCD
jsr score_points
ldx #<kerrek_get_belt_message

View File

@ -117,7 +117,7 @@ done_speech:
; UPDATE SCORE
lda #10
lda #$10 ; it's BCD
jsr score_points
trogdor_open: