Remove unused struct member

This commit is contained in:
Chris Robinson 2010-09-07 16:07:35 -07:00
parent 6027fda0ce
commit ba32a52bb6
3 changed files with 0 additions and 5 deletions

View File

@ -608,8 +608,6 @@ static void MixSource(ALsource *ALSource, ALCcontext *ALContext,
ALSource->position = DataPosInt;
ALSource->position_fraction = DataPosFrac;
ALSource->Buffer = BufferListItem->buffer;
ALSource->FirstStart = AL_FALSE;
}
ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size)

View File

@ -82,7 +82,6 @@ typedef struct ALsource
ALint lSourceType;
// Current target parameters used for mixing
ALboolean FirstStart;
ALboolean NeedsUpdate;
struct {
ALfloat DryGains[OUTPUTCHANNELS];

View File

@ -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)
{