diff options
author | Chris Robinson <[email protected]> | 2010-03-26 21:58:19 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-03-26 21:58:19 -0700 |
commit | 3f235c51f69a4cbdd2f304f3a48aaedc6b9bdddf (patch) | |
tree | 68d8216ea275e9973f9f9a0ef4cac12d71a466ba | |
parent | 7bdf0d515610798c96a14fd4ef506712b85ad41c (diff) |
Remove a couple unnecessary lines
-rw-r--r-- | Alc/ALc.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -1230,7 +1230,6 @@ ALC_API ALCcontext* ALC_APIENTRY alcCreateContext(ALCdevice *device, const ALCin // Check for attributes if(attrList) { - ALCint level = device->Bs2bLevel; ALCuint freq = device->Frequency; ALCuint numMono = device->NumMonoSources; ALCuint numStereo = device->NumStereoSources; @@ -1270,7 +1269,6 @@ ALC_API ALCcontext* ALC_APIENTRY alcCreateContext(ALCdevice *device, const ALCin device->UpdateSize = (ALuint64)device->UpdateSize * freq / device->Frequency; - device->Bs2bLevel = level; device->Frequency = freq; device->NumMonoSources = numMono; device->NumStereoSources = numStereo; |