diff options
author | Chris Robinson <[email protected]> | 2010-08-14 22:59:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-08-14 22:59:55 -0700 |
commit | 0c49e5ba56bb9b944ea3a55ce34a7ecc69832f38 (patch) | |
tree | f5ee01a0743b45f87c364253f92daf6234713fe3 /OpenAL32/alSource.c | |
parent | b65bc4523653017dfc7b910ebafcb213714fcb0c (diff) |
Use click removal when starting a source
Diffstat (limited to 'OpenAL32/alSource.c')
-rw-r--r-- | OpenAL32/alSource.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 1e320e19..5435e5d0 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -1366,11 +1366,7 @@ AL_API ALvoid AL_APIENTRY alSourcePlayv(ALsizei n, const ALuint *sources) if(Source->lOffset) ApplyOffset(Source); - if(Source->BuffersPlayed == 0 && Source->position == 0 && - Source->position_fraction == 0) - Source->FirstStart = AL_TRUE; - else - Source->FirstStart = AL_FALSE; + Source->FirstStart = AL_TRUE; // If device is disconnected, go right to stopped if(!Context->Device->Connected) |