aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/solaris.c
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/backends/solaris.c')
-rw-r--r--Alc/backends/solaris.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/Alc/backends/solaris.c b/Alc/backends/solaris.c
index 215e7209..4be32a50 100644
--- a/Alc/backends/solaris.c
+++ b/Alc/backends/solaris.c
@@ -236,6 +236,13 @@ 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,
@@ -247,7 +254,8 @@ static const BackendFuncs solaris_funcs = {
NULL,
NULL,
NULL,
- NULL
+ NULL,
+ solaris_get_latency
};
ALCboolean alc_solaris_init(BackendFuncs *func_list)