diff options
author | YamaArashi <shadow962@live.com> | 2015-07-13 15:40:33 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2015-07-13 15:40:33 -0700 |
commit | 0066e09828265cc1cc83eca27e6be76911f187ec (patch) | |
tree | 5e50f7e1527119261f7d8fac0831dfb1490a77cc /engine/battle/animations.asm | |
parent | f66a74b9fcb762d693e89415836386bcad2475b5 (diff) |
named party menu/naming screen wram variables
Diffstat (limited to 'engine/battle/animations.asm')
-rwxr-xr-x | engine/battle/animations.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/animations.asm b/engine/battle/animations.asm index ea879e53..83590d4c 100755 --- a/engine/battle/animations.asm +++ b/engine/battle/animations.asm @@ -336,14 +336,14 @@ LoadAnimationTileset: ; 781d2 (1e:41d2) ld d,0 add hl,de ld a,[hli] - ld [wd07d],a ; number of tiles + ld [wTempTilesetNumTiles],a ; number of tiles ld a,[hli] ld e,a ld a,[hl] ld d,a ; de = address of tileset ld hl,vSprites + $310 ld b, BANK(AnimationTileset1) ; ROM bank - ld a,[wd07d] + ld a,[wTempTilesetNumTiles] ld c,a ; number of tiles jp CopyVideoData ; load tileset |