Correctly capped minqtarget to maxq

This line of code incorrectly set maxq = maxq rather than
capping minqtarget.

Change-Id: Ifbc86df8b0ff2779e7b2a5f7349724d04a18bd62
This commit is contained in:
Adrian Grange
2012-01-31 12:58:34 -08:00
parent b72ab88d75
commit 3ff8c7d968

View File

@@ -187,7 +187,7 @@ int calculate_minq_index( double maxq,
c );
if ( minqtarget > maxq )
maxq = maxq;
minqtarget = maxq;
for ( i = 0; i < QINDEX_RANGE; i++ )
{