diff options
author | yenatch <yenatch@gmail.com> | 2016-04-18 08:01:12 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2016-04-18 08:01:12 -0400 |
commit | 7aef59841489ea449b9a34d424c681a4b48b88ab (patch) | |
tree | 72d46f1cc076564f62b11f5379960cd745a7fc9a /home/mobile.asm | |
parent | c5fb2c947ffcdd0ddd80319a24a6acbe828d9598 (diff) | |
parent | 5d94fb22ed0e4c9edfca506b80f50ef71fd78664 (diff) |
Merge pull request #338 from PikalaxALT/master
Battle anims, HP Bar anim
Diffstat (limited to 'home/mobile.asm')
-rw-r--r-- | home/mobile.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/home/mobile.asm b/home/mobile.asm index 32692f6a9..afe5d1b59 100644 --- a/home/mobile.asm +++ b/home/mobile.asm @@ -221,7 +221,7 @@ MobileHome_PlaceBox: ; 3f47 push bc call .FillTop pop bc -.RowLoop +.RowLoop: push bc call .FillMiddle pop bc @@ -231,28 +231,28 @@ MobileHome_PlaceBox: ; 3f47 ret ; 3f58 -.FillTop +.FillTop: ld a, $63 ld d, $62 ld e, $64 jr .FillRow -.FillBottom +.FillBottom: ld a, $68 ld d, $67 ld e, $69 jr .FillRow -.FillMiddle +.FillMiddle: ld a, $7f ld d, $65 ld e, $66 -.FillRow +.FillRow: push hl ld [hl], d inc hl -.FillLoop +.FillLoop: ld [hli], a dec c jr nz, .FillLoop |