Thai, you'll learn we merge often. ;)

This commit is contained in:
Jason Felds
2011-03-18 11:54:49 -04:00
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -29,6 +29,14 @@ sm-ssc v1.2.4 | 20110???
--------
* [NotesLoaderSMA] Allow for preliminary support of loading SMA files. This
will become better once Split Timing is in place. [Wolfman2000]
* [NotesLoaderBMS] Improve BMS loading: [theDtTvB]
* Ignore time signatures before the notes for the steps to be more
synchronized.
* Load BPM changes properly. Many songs with BPM changes no longer freeze.
* [Player] Stop playing the keysound when letting go of hold notes. [theDtTvB]
* [NoteDataUtil] Make keysounded notes that can't be inserted when reducing
number of tracks autokeysound, means less missing sounds when playing
7-key BMS on dance-single. [theDtTvB]
20110313
--------
+1 -1
View File
@@ -748,7 +748,7 @@ static bool LoadFromBMSFile( const RString &sPath, const NameToData_t &mapNameTo
int iEmptyTrack = -1;
for( int i=0; i<iNumNewTracks; i++ )
{
if ( ndNotes.GetTapNote(iTransformNewToOld[i], row) == TAP_EMPTY )
if ( ndNotes.GetTapNote(iTransformNewToOld[i], row) == TAP_EMPTY && !ndNotes.IsHoldNoteAtRow(iTransformNewToOld[i], row) )
{
iEmptyTrack = iTransformNewToOld[i];
break;