shithub: qk1

Download patch

ref: a2f2fb1cd41d048789cd438771f9eddd1828f822
parent: 0a32cf32f2d0a4fc809952d9129603a1078de006
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Mon Jan 20 21:35:10 EST 2025

loadsfx: ignore missing sounds instead of crashing

--- a/snd_mix.c
+++ b/snd_mix.c
@@ -120,6 +120,8 @@
 	sfxcache_t *sc;
 	byte *u, buf[1024];	/* avoid dirtying the cache heap */
 
+	if(sfx == nil)
+		return nil;
 	if(sc = Cache_Check(&sfx->cu), sc != nil)
 		return sc;
 	u = loadstklmp(va("sound/%s", sfx->s), buf, sizeof buf, &len);
--- a/snd_openal.c
+++ b/snd_openal.c
@@ -263,6 +263,8 @@
 	byte *in;
 	int len;
 
+	if(sfx == nil)
+		return nil;
 	if((b = Cache_Check(&sfx->cu)) != nil)
 		return b;
 	in = loadstklmp(va("sound/%s", sfx->s), nil, 0, &len);