From: Reki Date: Sun, 30 May 2021 18:45:52 +0000 (-0400) Subject: Added missing semicolon X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=aef53cdfb295aa32c446abc4c7b5cb693e5b6030;p=xonotic%2Fdarkplaces.git Added missing semicolon --- diff --git a/sound.h b/sound.h index 877b4f44..5de51069 100644 --- 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 *sound, 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);