- fixed: Blood's summary screen needs to stop it sound when it ends.

This commit is contained in:
Christoph Oelckers 2021-05-01 20:11:47 +02:00
parent e0ec0f24d0
commit 512f1d852b
1 changed files with 5 additions and 0 deletions

View File

@ -199,6 +199,11 @@ class BloodSummaryScreen : SummaryScreenBase
BloodScreen.DrawText(font, text, 160, 134, 1, shadow:font == SmallFont2);
}
}
override void OnDestroy()
{
Raze.StopAllSounds();
}
}
//---------------------------------------------------------------------------