diff options
Diffstat (limited to 'Alc/dsound.c')
-rw-r--r-- | Alc/dsound.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Alc/dsound.c b/Alc/dsound.c index 34f42101..b840e04b 100644 --- a/Alc/dsound.c +++ b/Alc/dsound.c @@ -382,13 +382,10 @@ static void DSoundStopContext(ALCdevice *device, ALCcontext *context) } -static ALCboolean DSoundOpenCapture(ALCdevice *pDevice, const ALCchar *deviceName, ALCuint frequency, ALCenum format, ALCsizei SampleSize) +static ALCboolean DSoundOpenCapture(ALCdevice *pDevice, const ALCchar *deviceName) { (void)pDevice; (void)deviceName; - (void)frequency; - (void)format; - (void)SampleSize; return ALC_FALSE; } |