diff options
author | yenatch <yenatch@gmail.com> | 2017-09-24 03:27:12 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2017-09-24 03:27:47 -0400 |
commit | a950b020cd60d6ecf487d4cbb4dc4cc1b31a15fb (patch) | |
tree | a34b1c3cfdb51a69b87fc9cf4eb793bdcdce6ed0 /wram.asm | |
parent | afe67ba1b4dbeee87372f76fae3457565cc08cd5 (diff) |
Align "Sprites" section to $100 bytes.
The code expects this section to be aligned.
Diffstat (limited to 'wram.asm')
-rw-r--r-- | wram.asm | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -299,6 +299,7 @@ wGlobalAnimXOffset:: ds 1 wSpriteAnimsEnd:: ds 11 + wc3cc:: ds 1 wc3cd:: ds 31 wc3ec:: ds 1 @@ -317,7 +318,9 @@ wc3f8:: ds 1 wc3f9:: ds 1 wc3fa:: ds 1 wc3fb:: ds 1 -wc3fc:: ds 4 +wc3fc:: ds 1 + + ds 3 SECTION "Sprites", WRAM0 |