Explorar el Código

yuzu/main: Fix compiler warning

Frederic Laing hace 7 años
padre
commit
6c8b788d32
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/yuzu/main.cpp

+ 2 - 1
src/yuzu/main.cpp

@@ -933,7 +933,8 @@ void GMainWindow::OnGameListDumpRomFS(u64 program_id, const std::string& game_pa
     const auto full = res == "Full";
     const auto entry_size = CalculateRomFSEntrySize(extracted, full);
 
-    QProgressDialog progress(tr("Extracting RomFS..."), tr("Cancel"), 0, entry_size, this);
+    QProgressDialog progress(tr("Extracting RomFS..."), tr("Cancel"), 0,
+                             static_cast<s32>(entry_size), this);
     progress.setWindowModality(Qt::WindowModal);
     progress.setMinimumDuration(100);