diff options
Diffstat (limited to 'src/client/snd_openal.c')
-rw-r--r-- | src/client/snd_openal.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/client/snd_openal.c b/src/client/snd_openal.c index 403d013c..25854dc8 100644 --- a/src/client/snd_openal.c +++ b/src/client/snd_openal.c @@ -1849,6 +1849,13 @@ void S_AL_RawSamples(int stream, int samples, int rate, int width, int channels, // Volume S_AL_Gain (streamSources[stream], volume * s_volume->value * s_alGain->value); } + + // Start stream + if(!streamPlaying[stream]) + { + qalSourcePlay( streamSources[stream] ); + streamPlaying[stream] = qtrue; + } } /* |