From b6eadbccb5c733c7710ca8651e8e934a276eab6a Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 21 Feb 2022 00:26:51 +0100 Subject: [PATCH] -Blood: fix crashes when trying to exit from a fatal error during startup. soundEngine can be null here. --- source/games/blood/src/sfx.cpp | 2 +- source/games/blood/src/sound.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/games/blood/src/sfx.cpp b/source/games/blood/src/sfx.cpp index b3fb90599..7537237af 100644 --- a/source/games/blood/src/sfx.cpp +++ b/source/games/blood/src/sfx.cpp @@ -265,7 +265,7 @@ void sfxKill3DSound(DBloodActor* pActor, int a2, int a3) void sfxKillAllSounds(void) { - soundEngine->EnumerateChannels([](FSoundChan* channel) + if (soundEngine) soundEngine->EnumerateChannels([](FSoundChan* channel) { if (channel->SourceType == SOURCE_Actor || channel->SourceType == SOURCE_Unattached) soundEngine->StopChannel(channel); return false; diff --git a/source/games/blood/src/sound.cpp b/source/games/blood/src/sound.cpp index efff1ae3b..a8beb7185 100644 --- a/source/games/blood/src/sound.cpp +++ b/source/games/blood/src/sound.cpp @@ -218,7 +218,7 @@ void sndStartWavDisk(const char* pzFile, int nVolume, int nChannel) void sndKillAllSounds(void) { - soundEngine->StopSound(CHAN_AUTO); + if (soundEngine) soundEngine->StopSound(CHAN_AUTO); }