diff options
Diffstat (limited to 'constants')
-rw-r--r-- | constants/gfx_constants.asm | 1 | ||||
-rw-r--r-- | constants/text_constants.asm | 2 | ||||
-rw-r--r-- | constants/wram_constants.asm | 3 |
3 files changed, 4 insertions, 2 deletions
diff --git a/constants/gfx_constants.asm b/constants/gfx_constants.asm index 536f4a4..52f74e5 100644 --- a/constants/gfx_constants.asm +++ b/constants/gfx_constants.asm @@ -35,6 +35,7 @@ HP_YELLOW EQU 1 HP_RED EQU 2 SPRITEBUFFERSIZE EQU 7*7 * 8 ; 7 * 7 (tiles) * 8 (bytes per tile) +DOUBLESPRITEBUFFERSIZE EQU 2*SPRITEBUFFERSIZE ; sprite_oam_struct members (see macros/wram.asm) const_def diff --git a/constants/text_constants.asm b/constants/text_constants.asm index f899ea3..e487d4c 100644 --- a/constants/text_constants.asm +++ b/constants/text_constants.asm @@ -1,6 +1,6 @@ ; name lengths NAME_LENGTH EQU 11 ; English -PLAYER_NAME_LENGTH EQU 8 ; English +PLAYER_NAME_LENGTH EQU 6 ; Japanese BOX_NAME_LENGTH EQU 9 ; English MON_NAME_LENGTH EQU 6 MOVE_NAME_LENGTH EQU 13 ; English diff --git a/constants/wram_constants.asm b/constants/wram_constants.asm index 381bdeb..4b63ba7 100644 --- a/constants/wram_constants.asm +++ b/constants/wram_constants.asm @@ -9,4 +9,5 @@ NUM_DIRECTIONS EQU const_value const_def const DEBUG_BATTLE_F - const DEBUG_FIELD_F
\ No newline at end of file + const DEBUG_FIELD_F + const CONTINUED_F
\ No newline at end of file |