aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAkatsuki-py <bluejapan73+dev@gmail.com>2020-06-06 10:50:05 +0900
committerAkatsuki-py <bluejapan73+dev@gmail.com>2020-06-06 10:50:05 +0900
commita3b6d69efc96f41f82a5b9c5dbe4eff3c9f84118 (patch)
tree1b45ca198821a687af213836559a9f5d4c8007d5
parentfix SubtractAmountPaidFromMoney comment (diff)
downloadpokeyellow-a3b6d69efc96f41f82a5b9c5dbe4eff3c9f84118.tar.gz
pokeyellow-a3b6d69efc96f41f82a5b9c5dbe4eff3c9f84118.tar.xz
pokeyellow-a3b6d69efc96f41f82a5b9c5dbe4eff3c9f84118.zip
remove two whitespaces
-rw-r--r--engine/subtract_paid_money.asm2
-rw-r--r--home.asm2
2 files changed, 2 insertions, 2 deletions
diff --git a/engine/subtract_paid_money.asm b/engine/subtract_paid_money.asm
index 1f12db6c..2f4c2243 100644
--- a/engine/subtract_paid_money.asm
+++ b/engine/subtract_paid_money.asm
@@ -1,4 +1,4 @@
-; subtracts the amount the player paid from their money
+; 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
diff --git a/home.asm b/home.asm
index 677a7253..e0ef5539 100644
--- a/home.asm
+++ b/home.asm
@@ -1306,7 +1306,7 @@ CountSetBits::
ld [wNumSetBits], a
ret
-; subtracts the amount the player paid from their money
+; 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_