Reset frames between loading screens

This commit is contained in:
GriffinR 2025-04-29 16:45:09 -04:00
parent 7b7eb221e5
commit 184025aace

View File

@ -28,7 +28,8 @@ void PorymapLoadingScreen::start() {
this->ui->labelVersion->setText(AboutPorymap::getVersionString());
shownVersion = true;
}
this->ui->labelPixmap->setPixmap(QPixmap::fromImage(this->splashImage.frame(0)));
this->frame = 0;
this->ui->labelPixmap->setPixmap(QPixmap::fromImage(this->splashImage.frame(this->frame)));
this->timer.start(120);
this->show();
}