diff options
author | Chris Robinson <[email protected]> | 2014-09-08 06:59:58 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-09-08 06:59:58 -0700 |
commit | a234fc11e580ac851bdfabc8711546209c1c11a1 (patch) | |
tree | 881c23dcc50ee74b6fda39a516ae08bb22fcd001 /Alc/ALc.c | |
parent | 9dacd89a02e94e6d15feac53a9184c0eecd6d06f (diff) |
Remove the GetLatency method from the old BackendFuncs
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -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)(); |