comment out debug_movie

This commit is contained in:
in1tiate 2021-08-11 09:38:05 -05:00
parent 51698ca6ac
commit d84194871e
2 changed files with 3 additions and 5 deletions

View File

@ -19,7 +19,8 @@ QMAKE_LFLAGS += -Wl,-rpath,"'\$$ORIGIN/lib'"
# Uncomment for verbose network logging
# DEFINES += DEBUG_NETWORK
DEFINES += DEBUG_MOVIE
# Uncomment for verbose animation logging
# DEFINES += DEBUG_MOVIE
# Uncomment for building with debug symbols
# CONFIG += debug

View File

@ -320,10 +320,7 @@ void AOLayer::start_playback(QString p_image)
for (int i = frame; i--;) {
if (i <= -1)
break;
QPixmap l_pixmap = this->get_pixmap(m_reader.read());
int l_delay = m_reader.nextImageDelay();
movie_frames.append(l_pixmap);
movie_delays.append(l_delay);
load_next_frame();
}
}
last_path = p_image;