aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-03-26 21:58:19 -0700
committerChris Robinson <[email protected]>2010-03-26 21:58:19 -0700
commit3f235c51f69a4cbdd2f304f3a48aaedc6b9bdddf (patch)
tree68d8216ea275e9973f9f9a0ef4cac12d71a466ba
parent7bdf0d515610798c96a14fd4ef506712b85ad41c (diff)
Remove a couple unnecessary lines
-rw-r--r--Alc/ALc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index f81d34e4..977c8ab6 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -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;