fix warnings

This commit is contained in:
Chris Danford
2004-10-02 05:08:59 +00:00
parent 0e7c5a7141
commit b76949e1a9
4 changed files with 9 additions and 10 deletions
+1 -1
View File
@@ -282,7 +282,7 @@ bool BMSLoader::LoadFromBMSFile( const CString &sPath, Steps &out, const map<CSt
if( it != mapWavIdToKeysoundIndex.end() )
{
tn.bKeysound = true;
tn.keysoundIndex = it->second;
tn.keysoundIndex = (uint16_t)it->second;
}
vTapNotes.push_back( tn );
}