From 0fcc299466bec82542ce4b4502f666ff6db30b2a Mon Sep 17 00:00:00 2001 From: manongjohn <19245851+manongjohn@users.noreply.github.com> Date: Sun, 26 Feb 2023 23:15:58 -0500 Subject: [PATCH] Fix error in TSoundOutputDevice::getPreferredFormat --- toonz/sources/common/tsound/tsound_qt.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/toonz/sources/common/tsound/tsound_qt.cpp b/toonz/sources/common/tsound/tsound_qt.cpp index 40ea4884..3e90e71f 100644 --- a/toonz/sources/common/tsound/tsound_qt.cpp +++ b/toonz/sources/common/tsound/tsound_qt.cpp @@ -325,8 +325,7 @@ TSoundTrackFormat TSoundOutputDevice::getPreferredFormat(TUINT32 sampleRate, int channelCount, int bitPerSample, int sampleType) { - TSoundTrackFormat fmt(sampleRate, bitPerSample, channelCount, true, - sampleType); + TSoundTrackFormat fmt(sampleRate, bitPerSample, channelCount, sampleType); return fmt; }