summaryrefslogtreecommitdiff
path: root/wram.asm
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2015-08-29 17:27:57 -0700
committerYamaArashi <shadow962@live.com>2015-08-29 17:29:16 -0700
commit2ff0f3f208d01c6244c805866a1795be1dfd21ea (patch)
treefcacb6f4926b4ae9bbea9ddb8077d1e1bcc7e14f /wram.asm
parentb6a7e5e9cf20e7924f6cf427c66e9aeb42fa77f3 (diff)
added constants for item capacity
Diffstat (limited to 'wram.asm')
-rwxr-xr-xwram.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/wram.asm b/wram.asm
index 9dd3fea3..acf75346 100755
--- a/wram.asm
+++ b/wram.asm
@@ -2282,7 +2282,7 @@ wNumBagItems:: ; d31d
ds 1
wBagItems:: ; d31e
; item, quantity
- ds 20 * 2
+ ds BAG_ITEM_CAPACITY * 2
ds 1 ; end
wPlayerMoney:: ; d347
@@ -2595,7 +2595,7 @@ wNumBoxItems:: ; d53a
ds 1
wBoxItems:: ; d53b
; item, quantity
- ds 50 * 2
+ ds PC_ITEM_CAPACITY * 2
ds 1 ; end
wCurrentBoxNum:: ; d5a0