]> git.rm.cloudns.org Git - xonotic/darkplaces.git/commitdiff
Localsound2 added to weird prototype file
authorReki <spiper212@gmail.com>
Sun, 30 May 2021 18:41:02 +0000 (14:41 -0400)
committerReki <spiper212@gmail.com>
Sun, 30 May 2021 18:41:02 +0000 (14:41 -0400)
snd_null.c
sound.h

index f487874a40c35b1505a016eb8038623f39b5443d..f937df6bfd1bc46a35fc7f251b12c47946f9f160 100755 (executable)
@@ -136,6 +136,11 @@ qbool S_LocalSound (const char *s)
        return false;
 }
 
+qbool S_LocalSound2(const char *sound, int chnl, float vlume)
+{
+       return false;
+}
+
 void S_BlockSound (void)
 {
 }
diff --git a/sound.h b/sound.h
index 2645ee61b424d448a30c7abae8fef0e5ba1649b8..877b4f44eda1d511fb0d8b15fb57b3611715a5e2 100644 (file)
--- a/sound.h
+++ b/sound.h
@@ -101,7 +101,7 @@ sfx_t *S_FindName(const char *name);
 int S_StartSound (int entnum, int entchannel, sfx_t *sfx, vec3_t origin, float fvol, float attenuation);
 int S_StartSound_StartPosition_Flags (int entnum, int entchannel, sfx_t *sfx, vec3_t origin, float fvol, float attenuation, float startposition, int flags, float fspeed);
 qbool S_LocalSound (const char *s);
-qbool S_LocalSound2 (const char *s, int chnl, float vlume);
+qbool S_LocalSound2 (const char *sound, int chnl, float vlume)
 
 void S_StaticSound (sfx_t *sfx, vec3_t origin, float fvol, float attenuation);
 void S_StopSound (int entnum, int entchannel);