diff options
author | Chris Robinson <[email protected]> | 2011-07-02 21:33:53 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-07-02 21:33:53 -0700 |
commit | ac7ca07221c0a5c06b2502baa21ea94e5b65395c (patch) | |
tree | 8d5b7d67077d26c397342f814c897e0811240750 /Alc/alcModulator.c | |
parent | b043390ec2ad465acc12b98acdb51909bdfdd667 (diff) |
Get rid of a couple typedefs
Diffstat (limited to 'Alc/alcModulator.c')
-rw-r--r-- | Alc/alcModulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alcModulator.c b/Alc/alcModulator.c index 55c6740e..8244b454 100644 --- a/Alc/alcModulator.c +++ b/Alc/alcModulator.c @@ -139,7 +139,7 @@ static ALboolean ModulatorDeviceUpdate(ALeffectState *effect, ALCdevice *Device) state->Gain[index] = 0.0f; for(index = 0;index < Device->NumChan;index++) { - Channel chan = Device->Speaker2Chan[index]; + enum Channel chan = Device->Speaker2Chan[index]; state->Gain[chan] = 1.0f; } |