diff options
author | neonloop | 2021-03-10 16:53:39 +0000 |
---|---|---|
committer | neonloop | 2021-03-10 16:53:39 +0000 |
commit | adaecd14d484d309e4d9ba2353ae843ab5213aec (patch) | |
tree | 92ba55bfc2e06aac66a6f5e1080cc2018815c7dc /shell/audio/oss | |
parent | ba054eee2a5f9d7abfaf1fad62c0f77eef1c1da7 (diff) | |
download | snesemu-adaecd14d484d309e4d9ba2353ae843ab5213aec.tar.gz snesemu-adaecd14d484d309e4d9ba2353ae843ab5213aec.tar.bz2 snesemu-adaecd14d484d309e4d9ba2353ae843ab5213aec.zip |
Initial trimui model s support
Diffstat (limited to 'shell/audio/oss')
-rw-r--r-- | shell/audio/oss/sound_output.c | 4 |
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) |