== 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.

This commit is contained in:
Steve Checkoway
2004-07-02 07:16:36 +00:00
parent 72b4599cd3
commit 4b52a182e1
@@ -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