We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a41def commit 4b36ba9Copy full SHA for 4b36ba9
src/core/Song.cpp
@@ -601,7 +601,7 @@ void Song::setPlayPos( tick_t ticks, PlayModes playMode )
601
{
602
tick_t ticksFromPlayMode = m_playPos[playMode].getTicks();
603
m_elapsedTicks += ticksFromPlayMode - ticks;
604
- m_elapsedMilliSeconds[m_playMode] += MidiTime::ticksToMilliseconds( ticks - ticksFromPlayMode, getTempo() );
+ m_elapsedMilliSeconds[playMode] += MidiTime::ticksToMilliseconds( ticks - ticksFromPlayMode, getTempo() );
605
m_playPos[playMode].setTicks( ticks );
606
m_playPos[playMode].setCurrentFrame( 0.0f );
607
0 commit comments