diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-04-04 16:14:48 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-04-04 16:14:48 -0400 |
commit | 145efc13535fbc9d8ab2786d29209d97aebf0481 (patch) | |
tree | d5cb92f123195ba8b063b245c04ad9198e7982cb /wram.asm | |
parent | aec3802587c8cd6955cce119d56a4e4970e83ba5 (diff) |
Use constants for screen size in metatiles
Diffstat (limited to 'wram.asm')
-rw-r--r-- | wram.asm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2769,7 +2769,7 @@ wMapGroup:: db ; dcb5 ; map group of current map wMapNumber:: db ; dcb6 ; map number of current map wYCoord:: db ; dcb7 ; current y coordinate relative to top-left corner of current map wXCoord:: db ; dcb8 ; current x coordinate relative to top-left corner of current map -wScreenSave:: ds 6 * 5 +wScreenSave:: ds SCREEN_META_WIDTH * SCREEN_META_HEIGHT wCurrMapDataEnd:: |