fixed InsertIntelligentTaps inserting notes that are too close together (runs of 16ths in the same track in Cartoon Heroes heavy + big)

fixed small editor issues
This commit is contained in:
Chris Danford
2003-02-20 21:50:01 +00:00
parent d9ad14bbaf
commit dc2f57d587
4 changed files with 10 additions and 10 deletions
+7 -7
View File
@@ -624,7 +624,7 @@ void ScreenEdit::InputEdit( const DeviceInput& DeviceI, const InputEventType typ
m_fDestinationScrollSpeed = 2;
m_soundMarker.Play();
}
else if( m_fDestinationScrollSpeed == 2 )
else // if( m_fDestinationScrollSpeed == 2 )
{
m_fDestinationScrollSpeed = 1;
m_soundMarker.Play();
@@ -633,16 +633,16 @@ void ScreenEdit::InputEdit( const DeviceInput& DeviceI, const InputEventType typ
}
else if( DeviceI.button == SDLK_DOWN )
{
if( m_fDestinationScrollSpeed == 1 )
{
m_fDestinationScrollSpeed = 2;
m_soundMarker.Play();
}
else if( m_fDestinationScrollSpeed == 2 )
if( m_fDestinationScrollSpeed == 2 )
{
m_fDestinationScrollSpeed = 4;
m_soundMarker.Play();
}
else //if( m_fDestinationScrollSpeed == 1 )
{
m_fDestinationScrollSpeed = 2;
m_soundMarker.Play();
}
break;
}
}