diff options
author | yenatch <yenatch@gmail.com> | 2014-06-04 01:10:56 -0700 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-06-04 01:10:56 -0700 |
commit | fd8804472d6f2244ae8c74bcd5017967c8cb6b7e (patch) | |
tree | b7b74d8a3275077bc5d9adfbc330f0570fe42ca0 /engine/title.asm | |
parent | b17553218bd5a60231a55ebc57c8ffd3523f5a99 (diff) |
Use {hl,de,bc}coord macros wherever possible.
Diffstat (limited to 'engine/title.asm')
-rw-r--r-- | engine/title.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/title.asm b/engine/title.asm index 6c3f7fee1..3f52d000c 100644 --- a/engine/title.asm +++ b/engine/title.asm @@ -115,15 +115,15 @@ _TitleScreen: ; 10ed67 call ByteFill ; Draw Pokemon logo - ld hl, $c4dc ; TileMap(0,3) - ld bc, $0714 ; 20x7 + hlcoord 0, 3 + lb bc, 7, 20 ld d, $80 ld e, $14 call DrawTitleGraphic ; Draw copyright text ld hl, $9c03 ; BGMap1(3,0) - ld bc, $010d ; 13x1 + lb bc, 1, 13 ld d, $c ld e, $10 call DrawTitleGraphic @@ -262,7 +262,7 @@ Unknown_10eece: ; 10eece Function10eed2: ; 10eed2 - ld hl, $c596 + hlcoord 6, 12 ld b, $6 .asm_10eed7 ld c, $8 |