aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/null.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/backends/null.c')
-rw-r--r--Alc/backends/null.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/Alc/backends/null.c b/Alc/backends/null.c
index 8ae9479c..6c6ce0d0 100644
--- a/Alc/backends/null.c
+++ b/Alc/backends/null.c
@@ -129,14 +129,6 @@ static void null_stop_playback(ALCdevice *device)
}
-static ALint64 null_get_latency(ALCdevice *device)
-{
- /* FIXME: Time until next update + "safe" offset */
- (void)device;
- return 0;
-}
-
-
static const BackendFuncs null_funcs = {
null_open_playback,
null_close_playback,
@@ -151,7 +143,7 @@ static const BackendFuncs null_funcs = {
NULL,
ALCdevice_LockDefault,
ALCdevice_UnlockDefault,
- null_get_latency
+ ALCdevice_GetLatencyDefault
};
ALCboolean alc_null_init(BackendFuncs *func_list)