From 306ba7fb811e9929212569206e8502ddfaae7f48 Mon Sep 17 00:00:00 2001 From: Gergo Koteles Date: Wed, 9 Jul 2025 22:56:25 +0200 Subject: [PATCH] hdmi sound: remove default channel swap as it's fixed in the pan --- src/minidexed.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/minidexed.cpp b/src/minidexed.cpp index 51e6444..6c1f798 100644 --- a/src/minidexed.cpp +++ b/src/minidexed.cpp @@ -213,10 +213,6 @@ CMiniDexed::CMiniDexed (CConfig *pConfig, CInterruptSystem *pInterrupt, m_pSoundDevice = new CHDMISoundBaseDevice (pInterrupt, pConfig->GetSampleRate (), pConfig->GetChunkSize ()); - - // The channels are swapped by default in the HDMI sound driver. - // TODO: Remove this line, when this has been fixed in the driver. - m_bChannelsSwapped = !m_bChannelsSwapped; #endif } else