Made backslash mappable. Fixed mistake in previous AddSegment fix so now it correctly compares to the previous segment again. F7/F8 no longer allow negative bpms to match Edit BPM behavior.
This commit is contained in:
@@ -423,6 +423,18 @@ void TimingData::AddSegment( const TimingSegment *seg )
|
||||
return;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// if true, this is redundant segment change
|
||||
if( (*prev) == (*seg) )
|
||||
{
|
||||
if( prev != cur )
|
||||
{
|
||||
EraseSegment( vSegs, index, cur );
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user