Mostly 64 - 32 float warning fixes.

This commit is contained in:
Jason Felds
2011-06-12 03:37:10 -04:00
parent 4bb0b28fc8
commit 2ab5a4ddb8
10 changed files with 24 additions and 19 deletions
+1 -1
View File
@@ -256,7 +256,7 @@ void AdjustSync::AutosyncTempo()
// keep only a fraction of the data, such as the 80% with the lowest
// error. However, throwing away the ones with high error should
// be enough in most cases.
float fFilteredError = 0.0;
float fFilteredError = 0;
s_iStepsFiltered = s_vAutosyncTempoData.size();
FilterHighErrorPoints( s_vAutosyncTempoData, fSlope, fIntercept, ERROR_TOO_HIGH );
s_iStepsFiltered -= s_vAutosyncTempoData.size();