diff options
author | GriffinR <griffin.richards@comcast.net> | 2019-12-04 15:25:13 -0500 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-12-06 19:05:44 -0600 |
commit | c40879aa3693a18c23be42cce54d52ca7afe1bca (patch) | |
tree | efdd624c6a153da738551d6c93a198a704e832ef /src/money.c | |
parent | 22fd579fd98bb7d1e5d282da2aea2ab98f711de2 (diff) |
Use ST_OAM constants for OamData definitions
Diffstat (limited to 'src/money.c')
-rw-r--r-- | src/money.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/money.c b/src/money.c index 7b95a75ab..6213f2dd0 100644 --- a/src/money.c +++ b/src/money.c @@ -20,10 +20,10 @@ EWRAM_DATA static u8 sMoneyLabelSpriteId = 0; static const struct OamData sOamData_MoneyLabel = { .y = 0, - .affineMode = 0, - .objMode = 0, + .affineMode = ST_OAM_AFFINE_OFF, + .objMode = ST_OAM_OBJ_NORMAL, .mosaic = 0, - .bpp = 0, + .bpp = ST_OAM_4BPP, .shape = SPRITE_SHAPE(32x16), .x = 0, .matrixNum = 0, |