diff --git a/game.asm b/game.asm index 1361c94..a25e9b2 100644 --- a/game.asm +++ b/game.asm @@ -1102,17 +1102,17 @@ nextisequal nextisequal2 ; if results are equal, check money (H) ldy TankSequence,x - lda moneyH,y + lda EarnedMoneyH,y ldy TankSequence+1,x - cmp moneyH,y + cmp EarnedMoneyH,y bcc nextishigher bne swapvalues nextisequal2b ; if results are equal, check money (L) ldy TankSequence,x - lda moneyL,y + lda EarnedMoneyL,y ldy TankSequence+1,x - cmp moneyL,y + cmp EarnedMoneyL,y ; beq nextishigher ; this is to block hangs when 2 equal values meet bcc nextishigher diff --git a/scorch.bin b/scorch.bin index 7bd3a0c..cb8dd47 100644 Binary files a/scorch.bin and b/scorch.bin differ diff --git a/scorch.xex b/scorch.xex index 00911f6..4fc43d9 100644 Binary files a/scorch.xex and b/scorch.xex differ