diff options
author | Phlosioneer <mattmdrr2@gmail.com> | 2019-04-01 18:31:10 -0400 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-04-02 07:41:50 -0500 |
commit | 201c0953ae4f6c6b65958065f009cbaee3c8f3ee (patch) | |
tree | 3ead6c3826b100b44953797026678e56c2780843 /src/pokemon_icon.c | |
parent | 1aa95a1821cd4ebe552a39bbfed067a305071e31 (diff) |
Cleanup OamData entries
Diffstat (limited to 'src/pokemon_icon.c')
-rw-r--r-- | src/pokemon_icon.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/pokemon_icon.c b/src/pokemon_icon.c index 4ff182a0e..a5d3f8961 100644 --- a/src/pokemon_icon.c +++ b/src/pokemon_icon.c @@ -927,18 +927,15 @@ const struct SpritePalette gMonIconPaletteTable[] = const struct OamData sMonIconOamData = { .y = 0, - .affineMode = 0, - .objMode = 0, - .mosaic = 0, - .bpp = 0, + .affineMode = ST_OAM_AFFINE_OFF, + .objMode = ST_OAM_OBJ_NORMAL, + .bpp = ST_OAM_4BPP, .shape = SPRITE_SHAPE(32x32), .x = 0, - .matrixNum = 0, .size = SPRITE_SIZE(32x32), .tileNum = 0, .priority = 1, .paletteNum = 0, - .affineParam = 0 }; // fastest to slowest @@ -1311,3 +1308,5 @@ void sub_80D32C8(struct Sprite *sprite, u8 animNum) sprite->animDelayCounter = 0; sprite->animCmdIndex = 0; } + + |