diff options
author | yenatch <yenatch@gmail.com> | 2015-02-10 18:21:38 -0800 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2015-02-10 18:21:38 -0800 |
commit | 956b990cd23bb821d665d56775e946ea07091690 (patch) | |
tree | 7c15520a68327b7382bbf20b2a1c93be2865593d /home.asm | |
parent | c0c081d60fa2e23fdfbd938994506ca63fd44780 (diff) |
Fix a bunch of palette copying errors and wram bank conflicts.
There are probably a bunch more labels with wrong banks. This takes care of the most noticeable ones.
Diffstat (limited to 'home.asm')
-rw-r--r-- | home.asm | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -218,7 +218,7 @@ Function309d:: ; 309d ld a, 2 ld [rSVBK], a ld hl, TileMap - ld de, wd000 + ld de, w2_d000 ld bc, TileMapEnd - TileMap call CopyBytes pop af @@ -240,7 +240,7 @@ Function30bf:: ; 30bf push af ld a, 2 ld [rSVBK], a - ld hl, wd000 + ld hl, w2_d000 ld de, TileMap ld bc, TileMapEnd - TileMap call CopyBytes @@ -2226,7 +2226,7 @@ Function3f7c:: ; 3f7c ; 3f88 Function3f88:: ; 3f88 - ld hl, wd000 + ld hl, w6_d000 ld b, $0 .asm_3f8d push bc @@ -2247,7 +2247,7 @@ Function3f88:: ; 3f88 ; 3f9f Function3f9f:: ; 3f9f - ld hl, wd000 + ld hl, w6_d000 .asm_3fa2 push bc ld c, $8 |