diff options
| author | luckytyphlosion <alan.rj.huang@gmail.com> | 2015-08-09 19:28:43 -0400 |
|---|---|---|
| committer | luckytyphlosion <alan.rj.huang@gmail.com> | 2015-08-09 19:28:43 -0400 |
| commit | 9c61b495da446c2216bcd8c56aaa55fffdbf3d61 (patch) | |
| tree | 7f8706e0e174bffa26dad81fb08af5c6a98f99a1 /engine/gamefreak.asm | |
| parent | Fix all of bank0 related errors. (diff) | |
| download | pokeyellow-9c61b495da446c2216bcd8c56aaa55fffdbf3d61.tar.gz pokeyellow-9c61b495da446c2216bcd8c56aaa55fffdbf3d61.tar.xz pokeyellow-9c61b495da446c2216bcd8c56aaa55fffdbf3d61.zip | |
Fix bank1c errors and a few missed bank0 errors.
Diffstat (limited to 'engine/gamefreak.asm')
| -rwxr-xr-x | engine/gamefreak.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/gamefreak.asm b/engine/gamefreak.asm index b3854b7b..528d355e 100755 --- a/engine/gamefreak.asm +++ b/engine/gamefreak.asm @@ -5,11 +5,11 @@ LoadShootingStarGraphics: ; 70000 (1c:4000) ld [rOBP1], a ; $ff49 call Func_3040 call Func_3061 - ld de, AnimationTileset2 + $30 ; $4757 ; star tile (top left quadrant) + ld de, AnimationTileset2 ; $4757 ; star tile (top left quadrant) ld hl, vChars1 + $200 ld bc, (BANK(AnimationTileset2) << 8) + $01 call CopyVideoData - ld de, AnimationTileset2 + $130 ; $481e ; star tile (bottom left quadrant) + ld de, AnimationTileset2 + $100 ; $481e ; star tile (bottom left quadrant) ld hl, vChars1 + $210 ld bc, (BANK(AnimationTileset2) << 8) + $01 call CopyVideoData |
