diff options
Diffstat (limited to 'Alc/wave.c')
-rw-r--r-- | Alc/wave.c | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -313,20 +313,12 @@ static void wave_stop_playback(ALCdevice *device) } -static ALCboolean wave_open_capture(ALCdevice *pDevice, const ALCchar *deviceName) -{ - (void)pDevice; - (void)deviceName; - return ALC_FALSE; -} - - static const BackendFuncs wave_funcs = { wave_open_playback, wave_close_playback, wave_reset_playback, wave_stop_playback, - wave_open_capture, + NULL, NULL, NULL, NULL, |