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:
Kyzentun
2015-02-16 13:31:21 -07:00
parent d0ee05795f
commit f1229d29cb
3 changed files with 23 additions and 5 deletions
+12
View File
@@ -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
{