diff options
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alSource.h | 1 | ||||
-rw-r--r-- | OpenAL32/alSource.c | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index c18b8629..dbbc445f 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -82,7 +82,6 @@ typedef struct ALsource ALint lSourceType; // Current target parameters used for mixing - ALboolean FirstStart; ALboolean NeedsUpdate; struct { ALfloat DryGains[OUTPUTCHANNELS]; diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 7e699816..a0865444 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -1361,8 +1361,6 @@ AL_API ALvoid AL_APIENTRY alSourcePlayv(ALsizei n, const ALuint *sources) if(Source->lOffset) ApplyOffset(Source); - Source->FirstStart = AL_TRUE; - // If device is disconnected, go right to stopped if(!Context->Device->Connected) { |