aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-09-08 06:59:58 -0700
committerChris Robinson <[email protected]>2014-09-08 06:59:58 -0700
commita234fc11e580ac851bdfabc8711546209c1c11a1 (patch)
tree881c23dcc50ee74b6fda39a516ae08bb22fcd001 /Alc/ALc.c
parent9dacd89a02e94e6d15feac53a9184c0eecd6d06f (diff)
Remove the GetLatency method from the old BackendFuncs
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)();