diff options
author | YamaArashi <shadow962@live.com> | 2015-02-07 18:37:40 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2015-02-07 18:37:40 -0800 |
commit | 32f7cf12de9f841f76a3f2010caf6d7a80d47bcc (patch) | |
tree | 3568312441db2bbd4acf0f6885913980f4c0eaad /engine/overworld/pokemart.asm | |
parent | 4fd7a42b235b68ffc11d4f02305b695c2ed05549 (diff) |
Named wram symbols
Diffstat (limited to 'engine/overworld/pokemart.asm')
-rwxr-xr-x | engine/overworld/pokemart.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/overworld/pokemart.asm b/engine/overworld/pokemart.asm index 4bc4c341..8325b93f 100755 --- a/engine/overworld/pokemart.asm +++ b/engine/overworld/pokemart.asm @@ -50,9 +50,9 @@ DisplayPokemartDialogue_: ; 6c20 (1:6c20) call DisplayTextBoxID ; draw money text box ld hl,wNumBagItems ld a,l - ld [wcf8b],a + ld [wList],a ld a,h - ld [wcf8c],a + ld [wList + 1],a xor a ld [wcf93],a ld [wCurrentMenuItem],a @@ -124,9 +124,9 @@ DisplayPokemartDialogue_: ; 6c20 (1:6c20) call DisplayTextBoxID ; draw money text box ld hl,wStringBuffer2 + 11 ld a,l - ld [wcf8b],a + ld [wList],a ld a,h - ld [wcf8c],a + ld [wList + 1],a xor a ld [wCurrentMenuItem],a inc a |