aboutsummaryrefslogtreecommitdiff
path: root/shell/audio/oss/sound_output.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/audio/oss/sound_output.c')
-rw-r--r--shell/audio/oss/sound_output.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/audio/oss/sound_output.c b/shell/audio/oss/sound_output.c
index 2d32b1f..39a7ba3 100644
--- a/shell/audio/oss/sound_output.c
+++ b/shell/audio/oss/sound_output.c
@@ -49,6 +49,10 @@ void Audio_Write(int16_t* restrict buffer, uint32_t buffer_size)
write(oss_audio_fd, buffer, buffer_size * 4 );
}
+bool Audio_Underrun_Likely() {
+ return false;
+}
+
void Audio_Close()
{
if (oss_audio_fd >= 0)