Przeglądaj źródła

Merge pull request #2370 from lioncash/qt-warn

yuzu/loading_screen: Resolve runtime Qt string formatting warnings
bunnei 7 lat temu
rodzic
commit
71182643f7
1 zmienionych plików z 6 dodań i 1 usunięć
  1. 6 1
      src/yuzu/loading_screen.cpp

+ 6 - 1
src/yuzu/loading_screen.cpp

@@ -192,7 +192,12 @@ void LoadingScreen::OnLoadProgress(VideoCore::LoadCallbackStage stage, std::size
     }
     }
 
 
     // update labels and progress bar
     // update labels and progress bar
-    ui->stage->setText(stage_translations[stage].arg(value).arg(total));
+    if (stage == VideoCore::LoadCallbackStage::Decompile ||
+        stage == VideoCore::LoadCallbackStage::Build) {
+        ui->stage->setText(stage_translations[stage].arg(value).arg(total));
+    } else {
+        ui->stage->setText(stage_translations[stage]);
+    }
     ui->value->setText(estimate);
     ui->value->setText(estimate);
     ui->progress_bar->setValue(static_cast<int>(value));
     ui->progress_bar->setValue(static_cast<int>(value));
     previous_time = now;
     previous_time = now;