Skip to content

Commit f4b82e2

Browse files
committed
Integrated isolated_thundershowers.hvif with the App
1 parent 344a2f6 commit f4b82e2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Diff for: Artwork/weather_isolated_thundershowers.hvif

21.9 KB
Binary file not shown.

Diff for: Source/ForecastView.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,7 @@ ForecastView::_LoadBitmaps()
513513
_LoadIcons(fFewClouds, 'rGFX', "Artwork/weather_few_clouds.hvif");
514514
_LoadIcons(fFog, 'rGFX', "Artwork/weather_fog.hvif");
515515
_LoadIcons(fFreezingDrizzle, 'rGFX', "Artwork/weather_freezing_drizzle.hvif");
516+
_LoadIcons(fIsolatedThundershowers, 'rGFX', "Artwork/weather_isolated_thundershowers.hvif");
516517
_LoadIcons(fIsolatedThunderstorm, 'rGFX', "Artwork/weather_isolated_thunderstorm.hvif");
517518
_LoadIcons(fLightSnow, 'rGFX', "Artwork/weather_light_snow.hvif");
518519
_LoadIcons(fMixedSnowRain, 'rGFX', "Artwork/weather_mixed_snow_rain.hvif");
@@ -544,6 +545,7 @@ ForecastView::_DeleteBitmaps()
544545
_DeleteIcons(fFewClouds);
545546
_DeleteIcons(fFog);
546547
_DeleteIcons(fFreezingDrizzle);
548+
_DeleteIcons(fIsolatedThundershowers);
547549
_DeleteIcons(fIsolatedThunderstorm);
548550
_DeleteIcons(fLightSnow);
549551
_DeleteIcons(fMixedSnowRain);
@@ -737,7 +739,7 @@ ForecastView::GetWeatherIcon(int32 condition, weatherIconSize iconSize)
737739
case 44: return fClouds[iconSize]; // partly cloudy
738740
case 45: return fStorm[iconSize]; // thundershowers
739741
case 46: return fSnow[iconSize]; // snow showers
740-
case 47: return fThunder[iconSize]; // isolated thundershowers
742+
case 47: return fIsolatedThundershowers[iconSize]; // isolated thundershowers
741743
case 3200: break; //*not available
742744

743745
}

0 commit comments

Comments
 (0)