diff options
author | entrpntr <entrpntr@gmail.com> | 2020-05-04 14:25:55 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-05-04 14:25:55 -0400 |
commit | fd35959d94c9487e74b2376e529302b32061af83 (patch) | |
tree | 73b910d50e9af87d598e70a94900fd18f5f5fdaf /constants/text_constants.asm | |
parent | 39a7f59931e03e4ebd155e061ac6e71a6d6bd97a (diff) |
Clean up text, and some bank 3 code.
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 745fb52c..f1c3a0bf 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_LEFTALIGN_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_LEFTALIGN EQU 1 << PRINTNUM_LEFTALIGN_F +PRINTNUM_LEFTALIGN EQU 1 << PRINTNUM_LEFTALIGN_F PRINTNUM_LEADINGZEROS EQU 1 << PRINTNUM_LEADINGZEROS_F ; character sets (see charmap.asm) |