diff options
author | Marcus Huderle <huderlem@gmail.com> | 2019-04-02 18:29:51 -0500 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2019-04-02 18:29:51 -0500 |
commit | 181baf9fe561e893023f71a5793a8b1ac6d644d6 (patch) | |
tree | 8ac4906fc6f70fb000fc3fbcd73a325dc6114d20 /src/field_weather_effect.c | |
parent | 1241700b204b9f450221299c6e837c0f522f60b2 (diff) | |
parent | d8c9f1b30fb92289e7aa4d44dfcf1b2120bea8d6 (diff) |
Merge remote-tracking branch 'upstream/master' into misc_docs
# Conflicts:
# src/field_weather_effect.c
Diffstat (limited to 'src/field_weather_effect.c')
-rw-r--r-- | src/field_weather_effect.c | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/src/field_weather_effect.c b/src/field_weather_effect.c index eac434983..8fca02707 100644 --- a/src/field_weather_effect.c +++ b/src/field_weather_effect.c @@ -1579,18 +1579,15 @@ static void LoadAshSpriteSheet(void) static const struct OamData sAshSpriteOamData = { .y = 0, - .affineMode = 0, + .affineMode = ST_OAM_AFFINE_OFF, .objMode = ST_OAM_OBJ_BLEND, - .mosaic = 0, - .bpp = 0, + .bpp = ST_OAM_4BPP, .shape = SPRITE_SHAPE(64x64), .x = 0, - .matrixNum = 0, .size = SPRITE_SIZE(64x64), .tileNum = 0, .priority = 1, .paletteNum = 15, - .affineParam = 0, }; static const union AnimCmd sAshSpriteAnimCmd0[] = @@ -1800,18 +1797,15 @@ static const struct SpriteSheet gFog2SpriteSheet = static const struct OamData sFog2SpriteOamData = { .y = 0, - .affineMode = 0, - .objMode = 1, - .mosaic = 0, - .bpp = 0, + .affineMode = ST_OAM_AFFINE_OFF, + .objMode = ST_OAM_OBJ_BLEND, + .bpp = ST_OAM_4BPP, .shape = SPRITE_SHAPE(64x64), .x = 0, - .matrixNum = 0, .size = SPRITE_SIZE(64x64), .tileNum = 0, .priority = 2, .paletteNum = 0, - .affineParam = 0, }; static const union AnimCmd sFog2SpriteAnimCmd0[] = @@ -2043,18 +2037,15 @@ static void DestroySandstormSprites(void) static const struct OamData sSandstormSpriteOamData = { .y = 0, - .affineMode = 0, - .objMode = 1, - .mosaic = 0, - .bpp = 0, + .affineMode = ST_OAM_AFFINE_OFF, + .objMode = ST_OAM_OBJ_BLEND, + .bpp = ST_OAM_4BPP, .shape = SPRITE_SHAPE(64x64), .x = 0, - .matrixNum = 0, .size = SPRITE_SIZE(64x64), .tileNum = 0, .priority = 1, .paletteNum = 0, - .affineParam = 0, }; static const union AnimCmd sSandstormSpriteAnimCmd0[] = @@ -2591,3 +2582,5 @@ static void UpdateRainCounter(u8 newWeather, u8 oldWeather) && (newWeather == WEATHER_RAIN_LIGHT || newWeather == WEATHER_RAIN_MED)) IncrementGameStat(GAME_STAT_GOT_RAINED_ON); } + + |