diff options
author | libjet <libj3t@gmail.com> | 2020-02-20 01:24:55 +0000 |
---|---|---|
committer | libjet <libj3t@gmail.com> | 2020-02-20 01:24:55 +0000 |
commit | 2d16b94ef14073ad21a77aa9b36250709f420f63 (patch) | |
tree | 9b37affe0a1ac14e689117e73eafebf8008e6e6d /constants/text_constants.asm | |
parent | 53c4af7707e61efb9fcb2d881a450a7330b01024 (diff) |
Add home/print_bcd.asm
Diffstat (limited to 'constants/text_constants.asm')
-rw-r--r-- | constants/text_constants.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/constants/text_constants.asm b/constants/text_constants.asm index ee558956..745fb52c 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) |