forgot to apply effects during filter fade

This commit is contained in:
lostjared
2018-03-19 12:32:16 -07:00
parent 235e54d89f
commit 80bc97a814

View File

@@ -187,13 +187,14 @@ void Playback::run() {
if(single_mode == true && alpha > 0) {
filterFade(frame, current_filter, prev_filter, alpha);
drawEffects(frame);
alpha -= 0.08;
} else if(single_mode == true) {
mutex.lock();
ac::in_custom = false;
drawFilter(frame, current_filter);
msleep(duration/2);
drawEffects(frame);
msleep(duration/2);
mutex.unlock();
} else if(cur.size()>0) {
mutex.lock();