From 8c2a565e95db3a080976074260e7d6645bf10735 Mon Sep 17 00:00:00 2001 From: falkTX Date: Fri, 13 Dec 2024 22:57:04 +0100 Subject: [PATCH] AU: Fix missing time position in some hosts Signed-off-by: falkTX --- distrho/src/DistrhoPluginAU.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distrho/src/DistrhoPluginAU.cpp b/distrho/src/DistrhoPluginAU.cpp index 50a39f18..d7ef546c 100644 --- a/distrho/src/DistrhoPluginAU.cpp +++ b/distrho/src/DistrhoPluginAU.cpp @@ -651,7 +651,7 @@ public: DISTRHO_SAFE_ASSERT_UINT_RETURN(inElement == 0, inElement, kAudioUnitErr_InvalidElement); #if DISTRHO_PLUGIN_WANT_TIMEPOS outDataSize = sizeof(HostCallbackInfo); - outWritable = false; + outWritable = true; return noErr; #else return kAudioUnitErr_InvalidProperty;