From 4b52a182e180e12bea02629667936c212d15e5e8 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Fri, 2 Jul 2004 07:16:36 +0000 Subject: [PATCH] == not =, shouldn't gcc warn about that without extra ()? Also, my conversion codes doesn't quite work as I had expected, force format to Other for now. --- stepmania/src/arch/Sound/RageSoundDriver_CA.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver_CA.cpp b/stepmania/src/arch/Sound/RageSoundDriver_CA.cpp index 36f0dadc36..2f7592b6b4 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_CA.cpp +++ b/stepmania/src/arch/Sound/RageSoundDriver_CA.cpp @@ -183,7 +183,7 @@ RageSound_CA::RageSound_CA() const Desc& procFormat = FindClosestFormat( procFormats, mFormat ); stream.SetCurrentIOProcFormat( procFormat ); - + mFormat = OTHER; // XXX Temporary LOG->Info("Proc format is %s.", mFormat == EXACT ? "exact" : (mFormat == CANONICAL ? "canonical" : "other")); @@ -223,7 +223,7 @@ RageSound_CA::RageSound_CA() StartDecodeThread(); - if (mFormat = OTHER) + if (mFormat == OTHER) gConverter = new AudioConverter( this, procFormat ); try