shithub: pokered

Download patch

ref: 9dc71c771e57c57736c3ab63341676e39d7e98aa
parent: dfe718d99e0f08c2ae77b5fe967c49e3b383f46d
parent: a3b6d69efc96f41f82a5b9c5dbe4eff3c9f84118
author: Daniel Harding <33dannye@gmail.com>
date: Sun Jun 14 10:41:32 EDT 2020

Merge pull request #246 from Akatsuki-py/SubtractAmountPaidFromMoney

fix SubtractAmountPaidFromMoney comment

--- a/engine/subtract_paid_money.asm
+++ b/engine/subtract_paid_money.asm
@@ -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
+; OUTPUT: carry = 0(success) or 1(fail because there is not enough money)
 SubtractAmountPaidFromMoney_:
 	ld de, wPlayerMoney
 	ld hl, hMoney ; total price of items
--- a/home.asm
+++ b/home.asm
@@ -1307,7 +1307,7 @@
 	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_