fix warnings

This commit is contained in:
Glenn Maynard
2004-11-01 11:02:54 +00:00
parent 9cfb7c6d6c
commit 1eac0a3fa9
3 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -333,7 +333,7 @@ bool BMSLoader::LoadFromBMSFile( const CString &sPath, Steps &out, const map<CSt
// some BMS files seem to have funky alignment, causing us to write gigantic cache files.
// Try to correct for this by quantizing.
row = int(Quantize( float(row), ROWS_PER_MEASURE/64 ));
row = Quantize( row, ROWS_PER_MEASURE/64 );
BmsTrack bmsTrack;
bool bIsHold;