summaryrefslogtreecommitdiff
path: root/home.asm
diff options
context:
space:
mode:
Diffstat (limited to 'home.asm')
-rw-r--r--home.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/home.asm b/home.asm
index 28fb81c9..e0ef5539 100644
--- a/home.asm
+++ b/home.asm
@@ -333,10 +333,10 @@ GetCryData::
call BankswitchBack
; Cry headers have 3 channels,
- ; and start from index $14,
+ ; and start from index CRY_SFX_START,
; so add 3 times the cry id.
ld a, b
- ld c, $14
+ ld c, CRY_SFX_START
rlca ; * 2
add b
add c
@@ -1307,7 +1307,7 @@ CountSetBits::
ret
; subtracts the amount the player paid from their money
-; sets carry flag if there is enough money and unsets carry flag if not
+; OUTPUT: carry = 0(success) or 1(fail because there is not enough money)
SubtractAmountPaidFromMoney::
jpba SubtractAmountPaidFromMoney_