fix HoldNote compile errors/warnings

This commit is contained in:
Chris Danford
2003-04-05 21:18:18 +00:00
parent 0bb7164b91
commit d2a73edf35
4 changed files with 7 additions and 10 deletions
+2 -2
View File
@@ -125,11 +125,11 @@ bool KSFLoader::LoadFromKSFFile( const CString &sPath, Notes &out )
if( iHoldStartRow[t] != -1 ) // this ends the hold
{
HoldNote hn = {
HoldNote hn (
t, /* button */
iHoldStartRow[t]/(float)iTickCount, /* start */
(r-1)/(float)iTickCount /* end */
};
);
notedata.AddHoldNote( hn );
iHoldStartRow[t] = -1;
}