From 62e6efd4f72425975ed87bcf8f9c4875ed3244d5 Mon Sep 17 00:00:00 2001 From: izzy2lost Date: Sun, 18 Jan 2026 10:52:40 -0500 Subject: [PATCH] fix sound not working that happens randomly --- Src/Model3/Model3.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Src/Model3/Model3.cpp b/Src/Model3/Model3.cpp index 3ffbe5e..db837e9 100644 --- a/Src/Model3/Model3.cpp +++ b/Src/Model3/Model3.cpp @@ -2225,6 +2225,7 @@ bool CModel3::StartThreads(void) // Reset thread flags pauseThreads = false; stopThreads = false; + sndBrdWakeNotify = false; // Create PPC main board thread, if multi-threading GPU if (m_gpuMultiThreaded) @@ -2254,6 +2255,7 @@ bool CModel3::StartThreads(void) if (!syncSndBrdThread) { SetAudioCallback(AudioCallback, this); + WakeSoundBoardThread(); // kick once in case the audio callback is delayed } startedThreads = true;