Cleanup.
This commit is contained in:
@@ -169,13 +169,9 @@ void NoteDataUtil::LoadFromSMNoteDataString( NoteData &out, RString sSMNoteData
|
||||
// skip past the '}'
|
||||
while( *p )
|
||||
{
|
||||
if( *p == '}' )
|
||||
{
|
||||
p++;
|
||||
if( *(p++) == '}' )
|
||||
break;
|
||||
}
|
||||
p++;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -193,13 +189,9 @@ void NoteDataUtil::LoadFromSMNoteDataString( NoteData &out, RString sSMNoteData
|
||||
// skip past the ']'
|
||||
while( *p )
|
||||
{
|
||||
if( *p == ']' )
|
||||
{
|
||||
p++;
|
||||
if( *(p++) == ']' )
|
||||
break;
|
||||
}
|
||||
p++;
|
||||
}
|
||||
}
|
||||
|
||||
/* Optimization: if we pass TAP_EMPTY, NoteData will do a search
|
||||
|
||||
Reference in New Issue
Block a user