aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/portaudio.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2009-08-13 19:36:14 -0700
committerChris Robinson <[email protected]>2009-08-13 19:36:14 -0700
commite0792912028d143b89b3835b2a7203693a494d0f (patch)
tree763e226941fbad9850b8cfc29d309d3c92ea6537 /Alc/portaudio.c
parent826c641668a14c244bac30d61a681c6817461f80 (diff)
Remove unnecessary function parameters
Diffstat (limited to 'Alc/portaudio.c')
-rw-r--r--Alc/portaudio.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/Alc/portaudio.c b/Alc/portaudio.c
index 0b84d0b1..cfd35b56 100644
--- a/Alc/portaudio.c
+++ b/Alc/portaudio.c
@@ -174,14 +174,11 @@ static void pa_stop_context(ALCdevice *device, ALCcontext *context)
}
-static ALCboolean pa_open_capture(ALCdevice *device, const ALCchar *deviceName, ALCuint frequency, ALCenum format, ALCsizei SampleSize)
+static ALCboolean pa_open_capture(ALCdevice *device, const ALCchar *deviceName)
{
return ALC_FALSE;
(void)device;
(void)deviceName;
- (void)frequency;
- (void)format;
- (void)SampleSize;
}