diff options
author | Chris Robinson <[email protected]> | 2012-08-19 12:31:59 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-08-19 12:31:59 -0700 |
commit | 37924887e8ff84082bc948b46a664e03663ff670 (patch) | |
tree | decb64523e991cd03f49746a4d6d9b62cc6e0b44 /Alc/backends/solaris.c | |
parent | 0db7c4131b9b1da7a70c845a2ff3e5ab62c67e20 (diff) |
Use a default method to provide a dummy latency
Diffstat (limited to 'Alc/backends/solaris.c')
-rw-r--r-- | Alc/backends/solaris.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Alc/backends/solaris.c b/Alc/backends/solaris.c index 8d31104e..18c5ec01 100644 --- a/Alc/backends/solaris.c +++ b/Alc/backends/solaris.c @@ -236,13 +236,6 @@ static void solaris_stop_playback(ALCdevice *device) } -static ALint64 solaris_get_latency(ALCdevice *device) -{ - (void)device; - return 0; -} - - static const BackendFuncs solaris_funcs = { solaris_open_playback, solaris_close_playback, @@ -257,7 +250,7 @@ static const BackendFuncs solaris_funcs = { NULL, ALCdevice_LockDefault, ALCdevice_UnlockDefault, - solaris_get_latency + ALCdevice_GetLatencyDefault }; ALCboolean alc_solaris_init(BackendFuncs *func_list) |