MCPcopy Create free account
hub / github.com/LMMS/lmms / recordValue

Method recordValue

src/core/AutomationPattern.cpp:274–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

272
273
274void AutomationPattern::recordValue(MidiTime time, float value)
275{
276 if( value != m_lastRecordedValue )
277 {
278 putValue( time, value, true );
279 m_lastRecordedValue = value;
280 }
281 else if( valueAt( time ) != value )
282 {
283 removeValue( time );
284 }
285}
286
287
288

Callers 1

processAutomationsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected