From adaecd14d484d309e4d9ba2353ae843ab5213aec Mon Sep 17 00:00:00 2001 From: neonloop Date: Wed, 10 Mar 2021 16:53:39 +0000 Subject: Initial trimui model s support --- shell/audio/oss/sound_output.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'shell/audio/oss/sound_output.c') 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) -- cgit v1.2.3