summaryrefslogtreecommitdiff
path: root/src/field_weather_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/field_weather_util.c')
-rw-r--r--src/field_weather_util.c27
1 files changed, 13 insertions, 14 deletions
diff --git a/src/field_weather_util.c b/src/field_weather_util.c
index 2c3338fd9..459071736 100644
--- a/src/field_weather_util.c
+++ b/src/field_weather_util.c
@@ -51,20 +51,19 @@ void ResumePausedWeather(void)
SetCurrentAndNextWeather(weather);
}
-const u8 sWeatherCycleRoute119[] =
- {
- WEATHER_SUNNY,
- WEATHER_RAIN,
- WEATHER_RAIN_THUNDERSTORM,
- WEATHER_RAIN,
- };
-const u8 sWeatherCycleRoute123[] =
- {
- WEATHER_SUNNY,
- WEATHER_SUNNY,
- WEATHER_RAIN,
- WEATHER_SUNNY,
- };
+static const u8 sWeatherCycleRoute119[] = {
+ WEATHER_SUNNY,
+ WEATHER_RAIN,
+ WEATHER_RAIN_THUNDERSTORM,
+ WEATHER_RAIN,
+};
+
+static const u8 sWeatherCycleRoute123[] = {
+ WEATHER_SUNNY,
+ WEATHER_SUNNY,
+ WEATHER_RAIN,
+ WEATHER_SUNNY,
+};
static u8 TranslateWeatherNum(u8 weather)
{