[splittiming] Prepare the editor.
This commit is contained in:
@@ -1231,7 +1231,7 @@ Enter a new Time Signature denominator value.=Enter the note value that represen
|
||||
Enter a new Tickcount value.=Enter a new Tickcount value.
|
||||
Enter a new Combo value.=Enter a new Combo value.
|
||||
Enter a new Label value.=Enter a name for this section of the chart.
|
||||
Enter a new Warp value.=Enter the beat you will warp to when you reach this point.
|
||||
Enter a new Warp value.=Enter the number of beats you will warp over.
|
||||
Enter a new Speed percent value.=Enter the ratio for speed scrolling.\n\n1 is the default scroll.
|
||||
Enter a new Speed wait value.=Enter how long in seconds/beats it takes to change.\n\n0 is instant.
|
||||
Enter a new Speed mode value.=Enter how this segment is handled.\n\nType "0" for beats, "1" for seconds.
|
||||
|
||||
+5
-2
@@ -2763,8 +2763,11 @@ void ScreenEdit::HandleScreenMessage( const ScreenMessage SM )
|
||||
else if ( SM == SM_BackFromWarpChange )
|
||||
{
|
||||
float fWarp = StringToFloat( ScreenTextEntry::s_sLastAnswer );
|
||||
GetAppropriateTiming().SetWarpAtBeat( GetBeat(), fWarp );
|
||||
SetDirty( true );
|
||||
if( fWarp > 0 )
|
||||
{
|
||||
GetAppropriateTiming().SetWarpAtBeat( GetBeat(), fWarp );
|
||||
SetDirty( true );
|
||||
}
|
||||
}
|
||||
else if( SM == SM_BackFromSpeedPercentChange )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user