aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 5697017d..4d4d8e4e 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -59,7 +59,7 @@ struct BackendInfo {
BackendFuncs Funcs;
};
-#define EmptyFuncs { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }
+#define EmptyFuncs { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }
static struct BackendInfo BackendList[] = {
#ifdef HAVE_PULSEAUDIO
{ "pulse", ALCpulseBackendFactory_getFactory, NULL, NULL, NULL, EmptyFuncs },
@@ -1424,11 +1424,6 @@ DECL_CONST static ALCboolean IsValidALCChannels(ALCenum channels)
extern inline void LockContext(ALCcontext *context);
extern inline void UnlockContext(ALCcontext *context);
-ALint64 ALCdevice_GetLatencyDefault(ALCdevice *UNUSED(device))
-{
- return 0;
-}
-
ALint64 ALCdevice_GetLatency(ALCdevice *device)
{
return V0(device->Backend,getLatency)();