From 6c09aba33d20c2cd0bb36b2479c246637a78072e Mon Sep 17 00:00:00 2001 From: Lorenzooone Date: Thu, 9 Apr 2026 18:45:14 +0200 Subject: [PATCH] Make Audio Stability the default on MacOS after user report --- source/audio_data.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/audio_data.cpp b/source/audio_data.cpp index 20902bc..a6808ae 100755 --- a/source/audio_data.cpp +++ b/source/audio_data.cpp @@ -18,7 +18,11 @@ void AudioData::reset() { this->mute = false; this->max_audio_latency = 2; this->output_type = AUDIO_OUTPUT_STEREO; + #ifdef __APPLE__ + this->mode_output = AUDIO_MODE_STABLE; + #else this->mode_output = AUDIO_MODE_LOW_LATENCY; + #endif this->restart_request = false; this->text_updated = false; #if (defined(RASPI) || defined(ANDROID_COMPILATION))