diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-02-08 00:20:20 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-02-08 00:20:20 +0100 |
commit | ba9075ff6e0537ab27e40a233aa28a976b0731d1 (patch) | |
tree | 70dad53a242ead35dbc35763f8d2680bf0e33b0e /src/wram.asm | |
parent | ccfd3796e200fa21317e6c97bf2726ce140afd1e (diff) |
Move booster pack data to data/
Diffstat (limited to 'src/wram.asm')
-rwxr-xr-x | src/wram.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wram.asm b/src/wram.asm index 9022a55..c0d6632 100755 --- a/src/wram.asm +++ b/src/wram.asm @@ -3,14 +3,14 @@ INCLUDE "constants.asm" INCLUDE "vram.asm" -SECTION "WRAM Temp Card Collection", WRAM0 +SECTION "WRAM 0", WRAM0 wTempCardCollection:: ; c000 ds $100 ds $100 -SECTION "WRAM Duel Variables", WRAM0 +SECTION "WRAM Duels 1", WRAM0 wPlayerDuelVariables:: ; c200 @@ -410,7 +410,7 @@ wSerialRecvBuf:: ; cba5 - cbc4 ds $1 -SECTION "WRAM Duels", WRAM0 +SECTION "WRAM Duels 2", WRAM0 ; In a duel, the main menu current or last selected menu item ; From 0 to 5: Hand, Attack, Check, Pkmn Power, Retreat, Done |