From cd3d1f123044bcd1b2eac2d105f688d6d238e18f Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 7 Jul 2018 10:27:06 +1000 Subject: [PATCH] Core Audio: Fix a bug where the internal callback is not called. --- mini_al.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mini_al.h b/mini_al.h index 9264db80..c0845593 100644 --- a/mini_al.h +++ b/mini_al.h @@ -1,5 +1,5 @@ // Audio playback and capture library. Public domain. See "unlicense" statement at the end of this file. -// mini_al - v0.8.1 - 2018-07-06 +// mini_al - v0.8.2 - 2018-07-07 // // David Reid - davidreidsoftware@gmail.com @@ -25904,6 +25904,9 @@ mal_uint64 mal_sine_wave_read(mal_sine_wave* pSineWave, mal_uint64 count, float* // REVISION HISTORY // ================ // +// v0.8.2 - 2018-07-07 +// - Fix a bug on macOS with Core Audio where the internal callback is not called. +// // v0.8.1 - 2018-07-06 // - Fix compilation errors and warnings. //