diff options
Diffstat (limited to 'Alc/backends/opensl.c')
-rw-r--r-- | Alc/backends/opensl.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Alc/backends/opensl.c b/Alc/backends/opensl.c index 14d0061b..8d8ee72d 100644 --- a/Alc/backends/opensl.c +++ b/Alc/backends/opensl.c @@ -401,13 +401,6 @@ static void opensl_stop_playback(ALCdevice *Device) } -static ALint64 opensl_get_latency(ALCdevice *device) -{ - (void)device; - return 0; -} - - static const BackendFuncs opensl_funcs = { opensl_open_playback, opensl_close_playback, @@ -422,7 +415,7 @@ static const BackendFuncs opensl_funcs = { NULL, ALCdevice_LockDefault, ALCdevice_UnlockDefault, - opensl_get_latency + ALCdevice_GetLatencyDefault }; |