summaryrefslogtreecommitdiff
path: root/src/constants
diff options
context:
space:
mode:
Diffstat (limited to 'src/constants')
-rw-r--r--src/constants/name_constants.asm7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/constants/name_constants.asm b/src/constants/name_constants.asm
index b16df80..7d4370c 100644
--- a/src/constants/name_constants.asm
+++ b/src/constants/name_constants.asm
@@ -1,3 +1,6 @@
-PLAYER_NAME_LENGTH EQU $10
+NAME_BUFFER_LENGTH EQU 16
-NAMING_SCREEN_BUFFER_LENGTH EQU $18 \ No newline at end of file
+MAX_PLAYER_NAME_LENGTH EQU 6 * 2
+MAX_DECK_NAME_LENGTH EQU 20 * 1 ; note that its unit is byte!
+
+NAMING_SCREEN_BUFFER_LENGTH EQU 24 \ No newline at end of file