From c484ee8345a5cdce4a98bd757dfce9aed7a2e365 Mon Sep 17 00:00:00 2001 From: Wong Cho Ching Date: Fri, 31 Jan 2014 03:04:53 +0800 Subject: [PATCH 1/2] reset LFO controllers when playing is started --- src/core/song.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/song.cpp b/src/core/song.cpp index 3ac88a411..432034cc3 100644 --- a/src/core/song.cpp +++ b/src/core/song.cpp @@ -648,6 +648,7 @@ void song::playSong() m_playMode = Mode_PlaySong; m_playing = true; m_paused = false; + m_actions.push_front( ActionPlaySong ); savePos(); if(QApplication::type() != QApplication::Tty) { From f707f3f665fd71be394c84951d6f69f8eb9c3025 Mon Sep 17 00:00:00 2001 From: wongcc966422 Date: Fri, 31 Jan 2014 03:13:44 +0800 Subject: [PATCH 2/2] Update song.cpp --- src/core/song.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/song.cpp b/src/core/song.cpp index 432034cc3..b4b452fab 100644 --- a/src/core/song.cpp +++ b/src/core/song.cpp @@ -648,7 +648,7 @@ void song::playSong() m_playMode = Mode_PlaySong; m_playing = true; m_paused = false; - m_actions.push_front( ActionPlaySong ); + Controller::resetFrameCounter(); savePos(); if(QApplication::type() != QApplication::Tty) {