Fix syntax error introduced in 530721f

This commit is contained in:
oldmud0 2020-03-22 14:48:35 -05:00
parent 04d186e7c0
commit ede1236b70

View File

@ -178,15 +178,15 @@ void AOCharMovie::movie_ticker()
// imagine if QT had sane stuff like "mirror on QMovie" or "resize the image on QT" or "interface with the current QMovie image" or anything else
this->play_frame_sfx();
if (m_movie->frameCount() == 0) {
//qDebug() << "Frame count was checked again, and it's still 0";
if (m_movie->frameCount() == 0)
{
return;
}
else if(!apng) {
ticker->start(m_movie->nextFrameDelay());
else if (!apng)
{
ticker->start(m_movie->nextFrameDelay());
}
}
}
void AOCharMovie::LoadImageWithStupidMethodForFlipSupport(QImage image)