forked from mirror/openmw-tes3mp
Fix weather sounds persisting on a new game
This commit is contained in:
parent
9f0b34eae0
commit
c8e31725dc
2 changed files with 6 additions and 0 deletions
|
@ -167,6 +167,11 @@ WeatherManager::WeatherManager(MWRender::RenderingManager* rendering,MWWorld::Fa
|
|||
setFallbackWeather(blizzard,"blizzard");
|
||||
}
|
||||
|
||||
WeatherManager::~WeatherManager()
|
||||
{
|
||||
stopSounds(true);
|
||||
}
|
||||
|
||||
void WeatherManager::setWeather(const String& weather, bool instant)
|
||||
{
|
||||
if (weather == mCurrentWeather && mNextWeather == "")
|
||||
|
|
|
@ -120,6 +120,7 @@ namespace MWWorld
|
|||
{
|
||||
public:
|
||||
WeatherManager(MWRender::RenderingManager*,MWWorld::Fallback* fallback);
|
||||
~WeatherManager();
|
||||
|
||||
/**
|
||||
* Change the weather in the specified region
|
||||
|
|
Loading…
Reference in a new issue