diff options
-rw-r--r-- | graphics/weather/drought/colors_0.bin (renamed from graphics/weather/drought/0.gbapal) | bin | 8192 -> 8192 bytes | |||
-rw-r--r-- | graphics/weather/drought/colors_1.bin (renamed from graphics/weather/drought/1.gbapal) | bin | 8192 -> 8192 bytes | |||
-rw-r--r-- | graphics/weather/drought/colors_2.bin (renamed from graphics/weather/drought/2.gbapal) | bin | 8192 -> 8192 bytes | |||
-rw-r--r-- | graphics/weather/drought/colors_3.bin (renamed from graphics/weather/drought/3.gbapal) | bin | 8192 -> 8192 bytes | |||
-rw-r--r-- | graphics/weather/drought/colors_4.bin (renamed from graphics/weather/drought/4.gbapal) | bin | 8192 -> 8192 bytes | |||
-rw-r--r-- | graphics/weather/drought/colors_5.bin (renamed from graphics/weather/drought/5.gbapal) | bin | 8192 -> 8192 bytes | |||
-rw-r--r-- | src/field_weather.c | 12 |
7 files changed, 6 insertions, 6 deletions
diff --git a/graphics/weather/drought/0.gbapal b/graphics/weather/drought/colors_0.bin Binary files differindex e8249d55a..e8249d55a 100644 --- a/graphics/weather/drought/0.gbapal +++ b/graphics/weather/drought/colors_0.bin diff --git a/graphics/weather/drought/1.gbapal b/graphics/weather/drought/colors_1.bin Binary files differindex 145423a26..145423a26 100644 --- a/graphics/weather/drought/1.gbapal +++ b/graphics/weather/drought/colors_1.bin diff --git a/graphics/weather/drought/2.gbapal b/graphics/weather/drought/colors_2.bin Binary files differindex 4cdaa0103..4cdaa0103 100644 --- a/graphics/weather/drought/2.gbapal +++ b/graphics/weather/drought/colors_2.bin diff --git a/graphics/weather/drought/3.gbapal b/graphics/weather/drought/colors_3.bin Binary files differindex 793a8bb86..793a8bb86 100644 --- a/graphics/weather/drought/3.gbapal +++ b/graphics/weather/drought/colors_3.bin diff --git a/graphics/weather/drought/4.gbapal b/graphics/weather/drought/colors_4.bin Binary files differindex 315ec5193..315ec5193 100644 --- a/graphics/weather/drought/4.gbapal +++ b/graphics/weather/drought/colors_4.bin diff --git a/graphics/weather/drought/5.gbapal b/graphics/weather/drought/colors_5.bin Binary files differindex a74504f96..a74504f96 100644 --- a/graphics/weather/drought/5.gbapal +++ b/graphics/weather/drought/colors_5.bin diff --git a/src/field_weather.c b/src/field_weather.c index 21168426c..0db635c60 100644 --- a/src/field_weather.c +++ b/src/field_weather.c @@ -73,12 +73,12 @@ IWRAM_DATA static const u8 *sPaletteGammaTypes; // The drought weather effect uses a precalculated color lookup table. Presumably this // is because the underlying color shift calculation is slow. const u16 sDroughtWeatherColors[][0x1000] = { - INCBIN_U16("graphics/weather/drought/0.gbapal"), - INCBIN_U16("graphics/weather/drought/1.gbapal"), - INCBIN_U16("graphics/weather/drought/2.gbapal"), - INCBIN_U16("graphics/weather/drought/3.gbapal"), - INCBIN_U16("graphics/weather/drought/4.gbapal"), - INCBIN_U16("graphics/weather/drought/5.gbapal"), + INCBIN_U16("graphics/weather/drought/colors_0.bin"), + INCBIN_U16("graphics/weather/drought/colors_1.bin"), + INCBIN_U16("graphics/weather/drought/colors_2.bin"), + INCBIN_U16("graphics/weather/drought/colors_3.bin"), + INCBIN_U16("graphics/weather/drought/colors_4.bin"), + INCBIN_U16("graphics/weather/drought/colors_5.bin"), }; // This is a pointer to gWeather. All code in this file accesses gWeather directly, |