fix SubtractAmountPaidFromMoney comment

This commit is contained in:
Akatsuki-py 2020-06-05 04:32:12 +09:00
parent dfe718d99e
commit 09f07502b3
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
; subtracts the amount the player paid from their money
; sets carry flag if there is enough money and unsets carry flag if not
; subtracts the amount the player paid from their money
; OUTPUT: carry = 0(success) or 1(fail because there is not enough money)
SubtractAmountPaidFromMoney_:
ld de, wPlayerMoney
ld hl, hMoney ; total price of items

View file

@ -1306,8 +1306,8 @@ CountSetBits::
ld [wNumSetBits], a
ret
; subtracts the amount the player paid from their money
; sets carry flag if there is enough money and unsets carry flag if not
; subtracts the amount the player paid from their money
; OUTPUT: carry = 0(success) or 1(fail because there is not enough money)
SubtractAmountPaidFromMoney::
jpba SubtractAmountPaidFromMoney_