mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-16 23:20:43 +00:00
peasant: fix scoring when it's 10 points
we should be using BCD
This commit is contained in:
parent
e41bad95b7
commit
f18ddaa786
@ -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
|
||||
|
@ -117,7 +117,7 @@ done_speech:
|
||||
|
||||
; UPDATE SCORE
|
||||
|
||||
lda #10
|
||||
lda #$10 ; it's BCD
|
||||
jsr score_points
|
||||
|
||||
trogdor_open:
|
||||
|
Loading…
Reference in New Issue
Block a user