summaryrefslogtreecommitdiffstats
path: root/audio/out/ao_openal.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/out/ao_openal.c')
-rw-r--r--audio/out/ao_openal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/out/ao_openal.c b/audio/out/ao_openal.c
index 52b94299f0..b864bb8a8f 100644
--- a/audio/out/ao_openal.c
+++ b/audio/out/ao_openal.c
@@ -293,12 +293,12 @@ static int play(struct ao *ao, void **data, int samples, int flags)
return num * CHUNK_SAMPLES;
}
-static float get_delay(struct ao *ao)
+static double get_delay(struct ao *ao)
{
ALint queued;
unqueue_buffers();
alGetSourcei(sources[0], AL_BUFFERS_QUEUED, &queued);
- return queued * CHUNK_SAMPLES / (float)ao->samplerate;
+ return queued * CHUNK_SAMPLES / (double)ao->samplerate;
}
#define OPT_BASE_STRUCT struct priv