diff options
author | dannye <33dannye@gmail.com> | 2020-01-06 22:07:33 -0600 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2020-01-06 22:07:33 -0600 |
commit | e7be25948dfeef257697a7aa30706339f6ba014b (patch) | |
tree | 973d0ad95361a1dfd1c371be59a300be19532e47 /constants/text_constants.asm | |
parent | 99d16d616d5f70754dd6aa567e478e587a733d8c (diff) | |
parent | 94ebdab6d350fd6ebfd43c5a84710ed14dade8ca (diff) |
Merge branch 'master' into audio-macros
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 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) |