I just fixed the last thing that was stopping me from being able to fully use mixxx, the inability to select more channels on any device than the first sound card had.
Watch those stray semicolons, and see the attached patch :) -- Robin <[EMAIL PROTECTED]> JabberID: <[EMAIL PROTECTED]> Hostes alienigeni me abduxerunt. Qui annus est? PGP Key 0xA99CEB6D = 5957 6D23 8B16 EFAB FEF8 7175 14D3 6485 A99C EB6D
Index: dlgprefsound.cpp
===================================================================
--- dlgprefsound.cpp (revision 1715)
+++ dlgprefsound.cpp (working copy)
@@ -372,7 +372,7 @@
while(devItr.hasNext())
{
pdev = devItr.next();
- if(pdev->getInternalName() == ComboBoxSoundcardMaster->itemData(ComboBoxSoundcardMaster->currentIndex()).toString());
+ if(pdev->getInternalName() == ComboBoxSoundcardMaster->itemData(ComboBoxSoundcardMaster->currentIndex()).toString())
{
for(int chCount=0; chCount < pdev->getNumOutputChannels(); chCount+=2)
{
@@ -404,7 +404,7 @@
while(devItr.hasNext())
{
pdev = devItr.next();
- if(pdev->getInternalName() == ComboBoxSoundcardHeadphones->itemData(ComboBoxSoundcardHeadphones->currentIndex()).toString());
+ if(pdev->getInternalName() == ComboBoxSoundcardHeadphones->itemData(ComboBoxSoundcardHeadphones->currentIndex()).toString())
{
for(int chCount=0; chCount < pdev->getNumOutputChannels(); chCount+=2)
{
signature.asc
Description: This is a digitally signed message part.
------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________ Mixxx-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mixxx-devel
