summaryrefslogtreecommitdiff
path: root/constants/text_constants.asm
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2019-11-04 19:40:58 -0500
committerGitHub <noreply@github.com>2019-11-04 19:40:58 -0500
commit9ebe549347aa16ae3f10d3261242bb1e7bbb6ca6 (patch)
tree521a897c2da997534abd6f6adc1625968bc4603a /constants/text_constants.asm
parentc9563d5c5e8e3612ac40d70d6f6f5e03ba231f16 (diff)
parentd076159745e688bd58f1e512c4e0fcdd942161e9 (diff)
Merge pull request #654 from Rangi42/master
Miscellaneous cleanup issues
Diffstat (limited to 'constants/text_constants.asm')
-rw-r--r--constants/text_constants.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/constants/text_constants.asm b/constants/text_constants.asm
index ee5589561..f1c3a0bf7 100644
--- a/constants/text_constants.asm
+++ b/constants/text_constants.asm
@@ -33,12 +33,12 @@ TEXTBOX_INNERY EQU TEXTBOX_Y + 2
; PrintNum bit flags
const_def 5
const PRINTNUM_MONEY_F ; 5
- const PRINTNUM_RIGHTALIGN_F ; 6
+ const PRINTNUM_LEFTALIGN_F ; 6
const PRINTNUM_LEADINGZEROS_F ; 7
; PrintNum arguments (see engine/math/print_num.asm)
PRINTNUM_MONEY EQU 1 << PRINTNUM_MONEY_F
-PRINTNUM_RIGHTALIGN EQU 1 << PRINTNUM_RIGHTALIGN_F
+PRINTNUM_LEFTALIGN EQU 1 << PRINTNUM_LEFTALIGN_F
PRINTNUM_LEADINGZEROS EQU 1 << PRINTNUM_LEADINGZEROS_F
; character sets (see charmap.asm)