diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-01-07 16:03:19 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-01-07 16:03:19 +0000 |
commit | 8727790c295f4243c4c94e3abb2dc1e9196587ae (patch) | |
tree | 87fdcd708e5d875c3d0eb8b7f6363ecaf4da029c /code/client | |
parent | ea64cc1dc7033a1ede57f6bc278030429addeef9 (diff) | |
download | ioquake3-aero-8727790c295f4243c4c94e3abb2dc1e9196587ae.tar.gz ioquake3-aero-8727790c295f4243c4c94e3abb2dc1e9196587ae.zip |
- Fix two non-C-standard variable declarations.
- Fix function name of vsnprintf for windows systems.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1027 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client')
-rw-r--r-- | code/client/snd_openal.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/code/client/snd_openal.c b/code/client/snd_openal.c index 1bbf5e5..26628df 100644 --- a/code/client/snd_openal.c +++ b/code/client/snd_openal.c @@ -913,11 +913,14 @@ Play a local (non-spatialized) sound effect static void S_AL_StartLocalSound(sfxHandle_t sfx, int channel) { + srcHandle_t src; + if(S_AL_CheckInput(0, sfx)) return; // Try to grab a source - srcHandle_t src = S_AL_SrcAlloc(SRCPRI_LOCAL, -1, channel); + src = S_AL_SrcAlloc(SRCPRI_LOCAL, -1, channel); + if(src == -1) return; @@ -939,12 +942,13 @@ static void S_AL_StartSound( vec3_t origin, int entnum, int entchannel, sfxHandle_t sfx ) { vec3_t sorigin; + srcHandle_t src; if(S_AL_CheckInput(origin ? 0 : entnum, sfx)) return; // Try to grab a source - srcHandle_t src = S_AL_SrcAlloc(SRCPRI_ONESHOT, entnum, entchannel); + src = S_AL_SrcAlloc(SRCPRI_ONESHOT, entnum, entchannel); if(src == -1) return; |