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/mixer.c | |
parent | b043390ec2ad465acc12b98acdb51909bdfdd667 (diff) |
Get rid of a couple typedefs
Diffstat (limited to 'Alc/mixer.c')
-rw-r--r-- | Alc/mixer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c index 77c0d73b..050901ea 100644 --- a/Alc/mixer.c +++ b/Alc/mixer.c @@ -403,7 +403,7 @@ DECL_TEMPLATE(cubic) #undef DECL_TEMPLATE -MixerFunc SelectMixer(ALbuffer *Buffer, resampler_t Resampler) +MixerFunc SelectMixer(ALbuffer *Buffer, enum Resampler Resampler) { switch(Resampler) { @@ -441,7 +441,7 @@ DECL_TEMPLATE(cubic) #undef DECL_TEMPLATE -MixerFunc SelectHrtfMixer(ALbuffer *Buffer, resampler_t Resampler) +MixerFunc SelectHrtfMixer(ALbuffer *Buffer, enum Resampler Resampler) { switch(Resampler) { @@ -466,7 +466,7 @@ ALvoid MixSource(ALsource *Source, ALCdevice *Device, ALuint SamplesToDo) ALuint BuffersPlayed; ALboolean Looping; ALuint increment; - resampler_t Resampler; + enum Resampler Resampler; ALenum State; ALuint OutPos; ALuint FrameSize; |