summaryrefslogtreecommitdiff
path: root/engine/intro_menu.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2017-12-12 00:08:54 -0500
committerGitHub <noreply@github.com>2017-12-12 00:08:54 -0500
commitf6942b9a136b2ee3b25159ebc4d54509a42c5266 (patch)
tree0c0bedcd311ab83262e31cf6d9d4c37257143acc /engine/intro_menu.asm
parent94c7def4883fbdbcd3987a067443a2069b8bb610 (diff)
parent79873a1bfc0e40067c45dc74fbbebf547d177978 (diff)
Merge pull request #411 from roukaour/master
Clean up more labels, constants, and file names
Diffstat (limited to 'engine/intro_menu.asm')
-rwxr-xr-xengine/intro_menu.asm8
1 files changed, 3 insertions, 5 deletions
diff --git a/engine/intro_menu.asm b/engine/intro_menu.asm
index 6dcda93f3..e0ecd41fe 100755
--- a/engine/intro_menu.asm
+++ b/engine/intro_menu.asm
@@ -199,8 +199,6 @@ _ResetWRAM: ; 5bae
ld [Coins], a
ld [Coins + 1], a
-START_MONEY EQU 3000
-
IF START_MONEY / $10000
ld a, START_MONEY / $10000
ENDC
@@ -214,11 +212,11 @@ ENDC
ld [wWhichMomItem], a
ld hl, MomItemTriggerBalance
- ld [hl], 2300 / $10000
+ ld [hl], MOM_MONEY / $10000
inc hl
- ld [hl], 2300 / $100 % $100
+ ld [hl], MOM_MONEY / $100 % $100
inc hl
- ld [hl], 2300 % $100
+ ld [hl], MOM_MONEY % $100
call InitializeNPCNames