diff options
| author | in1tiate <radwoodward@vikings.grayson.edu> | 2021-08-11 09:38:05 -0500 |
|---|---|---|
| committer | in1tiate <radwoodward@vikings.grayson.edu> | 2021-08-11 09:38:05 -0500 |
| commit | d84194871e50d86ba36d01029192ecf0b7665127 (patch) | |
| tree | 9ab2d1c1f461acd5e7e07195e444eedf3ea7b4ac | |
| parent | 51698ca6ac57361ca3a5d9aa7d3b3a67374f8b49 (diff) | |
comment out debug_movie
| -rw-r--r-- | Attorney_Online.pro | 3 | ||||
| -rw-r--r-- | src/aolayer.cpp | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/Attorney_Online.pro b/Attorney_Online.pro index 2498232f..abca0fb0 100644 --- a/Attorney_Online.pro +++ b/Attorney_Online.pro @@ -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 diff --git a/src/aolayer.cpp b/src/aolayer.cpp index 075338b5..25873fee 100644 --- a/src/aolayer.cpp +++ b/src/aolayer.cpp @@ -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; |
