diff options
-rw-r--r-- | Fix-Snow-Weather.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Fix-Snow-Weather.md b/Fix-Snow-Weather.md index 3c5246a..5e0295b 100644 --- a/Fix-Snow-Weather.md +++ b/Fix-Snow-Weather.md @@ -14,8 +14,8 @@ Find the function `WaitSnowflakeSprite` and alter it as follows: ```diff static void WaitSnowflakeSprite(struct Sprite *sprite) { -- if (gWeatherPtr->unknown_6E2 > 18) -+ if (++gWeatherPtr->unknown_6E2 > 18) +- if (gWeatherPtr->snowflakeTimer > 18) ++ if (++gWeatherPtr->snowflakeTimer > 18) { sprite->invisible = FALSE; sprite->callback = UpdateSnowflakeSprite; |