- missing null check

This commit is contained in:
Christoph Oelckers 2020-08-20 23:41:45 +02:00
parent 31e792223a
commit d9e23c0ab9

View file

@ -105,9 +105,12 @@ SoundStream *S_CreateCustomStream(size_t size, int samplerate, int numchannels,
}
void S_StopCustomStream(SoundStream *stream)
{
if (stream)
{
stream->Stop();
delete stream;
}
}