diff options
author | MajorAgnostic <68892400+MajorAgnostic@users.noreply.github.com> | 2021-01-08 23:51:48 -0500 |
---|---|---|
committer | MajorAgnostic <68892400+MajorAgnostic@users.noreply.github.com> | 2021-01-08 23:51:48 -0500 |
commit | 43b1c3ef718934e6a701c50a753b7fc4ca10c2d0 (patch) | |
tree | e20637c218f6f7046bee14bf1799398e60b9b1fc | |
parent | da32ec9355baeb2aae204c4e4af14bc554ddac05 (diff) |
Updated Show an icon for the current weather (markdown)
-rw-r--r-- | Show-an-icon-for-the-current-weather.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Show-an-icon-for-the-current-weather.md b/Show-an-icon-for-the-current-weather.md index 272c2c9..378e470 100644 --- a/Show-an-icon-for-the-current-weather.md +++ b/Show-an-icon-for-the-current-weather.md @@ -98,13 +98,13 @@ Create a new file called weather_images.asm in gfx/ WeatherImages:: RainWeatherImage: -INCBIN "gfx/battle/weather/rain.2bpp" +INCBIN "gfx/battle/weather/rain_icon.2bpp" SunWeatherImage: -INCBIN "gfx/battle/weather/sun.2bpp" +INCBIN "gfx/battle/weather/sun_icon.2bpp" SandstormWeatherImage: -INCBIN "gfx/battle/weather/sand.2bpp" +INCBIN "gfx/battle/weather/sand_icon.2bpp" ``` Add this section to [main.asm](../blob/master/main.asm) |