summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2019-01-29 13:08:46 -0600
committerhuderlem <huderlem@gmail.com>2019-01-29 14:36:02 -0600
commit8f832434e57a14a661d22b151d90af3bb55f463a (patch)
treeddc537c1c8ffc6421db100e04a95b867a14aa949 /src
parentd2d44a97b8e7495f59fde92b02fece150b462dce (diff)
Change drought colors table files to .bin
Diffstat (limited to 'src')
-rw-r--r--src/field_weather.c12
1 files changed, 6 insertions, 6 deletions
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,