aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alcEcho.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-07-02 21:33:53 -0700
committerChris Robinson <[email protected]>2011-07-02 21:33:53 -0700
commitac7ca07221c0a5c06b2502baa21ea94e5b65395c (patch)
tree8d5b7d67077d26c397342f814c897e0811240750 /Alc/alcEcho.c
parentb043390ec2ad465acc12b98acdb51909bdfdd667 (diff)
Get rid of a couple typedefs
Diffstat (limited to 'Alc/alcEcho.c')
-rw-r--r--Alc/alcEcho.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alcEcho.c b/Alc/alcEcho.c
index aea2b00a..c47063bb 100644
--- a/Alc/alcEcho.c
+++ b/Alc/alcEcho.c
@@ -94,7 +94,7 @@ static ALboolean EchoDeviceUpdate(ALeffectState *effect, ALCdevice *Device)
state->Gain[i] = 0.0f;
for(i = 0;i < Device->NumChan;i++)
{
- Channel chan = Device->Speaker2Chan[i];
+ enum Channel chan = Device->Speaker2Chan[i];
state->Gain[chan] = 1.0f;
}