diff options
author | ProfLeonDiasBackup <86392953+ProfLeonDiasBackup@users.noreply.github.com> | 2021-06-28 19:52:58 -0400 |
---|---|---|
committer | ProfLeonDiasBackup <86392953+ProfLeonDiasBackup@users.noreply.github.com> | 2021-06-28 19:52:58 -0400 |
commit | b95b439b83cc0d8cc4c3c610609322f2d8683426 (patch) | |
tree | 6977771af00fc9ed43e1afd9bfd6488b7ba68613 | |
parent | 6d39f01936e35d44085d4d09ab5cc8efd5f4927c (diff) |
Changed Unknown value to snowflakeTimer
-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; |