From a45a36f23bab8c849d7a3c0e8171b7106e8b8dfc Mon Sep 17 00:00:00 2001 From: Jared Bruni Date: Tue, 19 May 2020 02:11:00 -0700 Subject: [PATCH] changed priority --- src/playback_thread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/playback_thread.cpp b/src/playback_thread.cpp index 04d345c..8b99d2a 100644 --- a/src/playback_thread.cpp +++ b/src/playback_thread.cpp @@ -42,8 +42,8 @@ void Playback::Play() { stop = false; } } - //start(LowPriority); - start(HighPriority); + start(LowPriority); + //start(HighPriority); } void Playback::setPngPath(std::string path) {