From 2299c08941b509fc15252f3f82c799ed0afbd1f3 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Mon, 10 Nov 2025 16:26:54 +0100 Subject: [PATCH] [PATCH] Fix Error generating sound source: Out of memory Thanks Indev! --- src/s_sound.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/s_sound.c b/src/s_sound.c index 998bb05ae..6d3e3828b 100644 --- a/src/s_sound.c +++ b/src/s_sound.c @@ -1001,8 +1001,7 @@ static void S_StopChannel(INT32 cnum) if (c->sfxinfo) { // stop the sound playing - if (I_SoundIsPlaying(c->handle)) - I_StopSound(c->handle); + I_StopSound(c->handle); // degrade usefulness of sound data c->sfxinfo->usefulness--;