diff options
author | pikalaxalt <PikalaxALT@gmail.com> | 2016-05-31 22:41:22 -0400 |
---|---|---|
committer | pikalaxalt <PikalaxALT@gmail.com> | 2016-05-31 22:41:22 -0400 |
commit | 6006a9df06cbe4228987a791aa522c01b1c49ddd (patch) | |
tree | da4b993d300e37d41ab3384fcdf9382d45393949 /constants/misc_constants.asm | |
parent | 717ee9ff15c28afb84b1977fe1654ec68c2ef9af (diff) |
Game Corner
Diffstat (limited to 'constants/misc_constants.asm')
-rw-r--r-- | constants/misc_constants.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 8333837d..4538c353 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -179,10 +179,11 @@ TEXT_REPEL_WORE_OFF EQU $d2 TEXT_SAFARI_GAME_OVER EQU $d3 ; PrintNumber - +BIT_MONEY_SIGN EQU 5 BIT_LEFT_ALIGN EQU 6 BIT_LEADING_ZEROES EQU 7 +MONEY_SIGH EQU (1 << BIT_MONEY_SIGN) LEFT_ALIGN EQU (1 << BIT_LEFT_ALIGN) LEADING_ZEROES EQU (1 << BIT_LEADING_ZEROES) |