diff options
author | Chris Robinson <[email protected]> | 2009-08-13 19:36:14 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-08-13 19:36:14 -0700 |
commit | e0792912028d143b89b3835b2a7203693a494d0f (patch) | |
tree | 763e226941fbad9850b8cfc29d309d3c92ea6537 /Alc/wave.c | |
parent | 826c641668a14c244bac30d61a681c6817461f80 (diff) |
Remove unnecessary function parameters
Diffstat (limited to 'Alc/wave.c')
-rw-r--r-- | Alc/wave.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -313,13 +313,10 @@ static void wave_stop_context(ALCdevice *device, ALCcontext *Context) } -static ALCboolean wave_open_capture(ALCdevice *pDevice, const ALCchar *deviceName, ALCuint frequency, ALCenum format, ALCsizei SampleSize) +static ALCboolean wave_open_capture(ALCdevice *pDevice, const ALCchar *deviceName) { (void)pDevice; (void)deviceName; - (void)frequency; - (void)format; - (void)SampleSize; return ALC_FALSE; } |