diff options
author | yenatch <yenatch@gmail.com> | 2018-02-15 21:14:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-15 21:14:22 -0500 |
commit | 4046b41c3aaaf0d930f0268e52112aa7ea01e0a4 (patch) | |
tree | 17932d687fef4c87e555c45fda32564f4df7aa0a /mobile | |
parent | b35eb72290b964b98844afbe741bb7ede34b9ef3 (diff) | |
parent | 8b007e8d51ec86992d97fa4b1c05b762e0916427 (diff) |
Merge pull request #487 from luckytyphlosion/master
Fix more w-izing edge cases.
Diffstat (limited to 'mobile')
-rwxr-xr-x | mobile/mobile_5b.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mobile/mobile_5b.asm b/mobile/mobile_5b.asm index a35c85641..c5cc54a50 100755 --- a/mobile/mobile_5b.asm +++ b/mobile/mobile_5b.asm @@ -200,7 +200,7 @@ MobileSystemSplashScreen_InitGFX: ; 16c108 ld bc, 20 xor a call ByteFill - ld hl, .wTileMap + ld hl, .TileMap decoord 0, 1 ld bc, $0154 call CopyBytes @@ -212,7 +212,7 @@ MobileSystemSplashScreen_InitGFX: ; 16c108 ld bc, SCREEN_WIDTH xor a call ByteFill - ld hl, .wAttrMap + ld hl, .AttrMap decoord 0, 1, wAttrMap ld bc, 17 * SCREEN_WIDTH call CopyBytes @@ -222,10 +222,10 @@ MobileSystemSplashScreen_InitGFX: ; 16c108 .Tiles: INCBIN "gfx/mobile/mobile_splash.2bpp" -.wTileMap: +.TileMap: INCBIN "gfx/mobile/mobile_splash.tilemap" -.wAttrMap: +.AttrMap: INCBIN "gfx/mobile/mobile_splash.attrmap" UnknownMobilePalettes_16c903: ; 16c903 |