summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Frederic Laing2018-11-06 15:22:24 +0100
committerGravatar Frederic Laing2018-11-06 15:22:24 +0100
commit6c8b788d32fc760ef8aedff5363ebc5c63a2b049 (patch)
tree57a8d4a603bf2c5364659ab7c81516db6f869e80
parentMerge pull request #1616 from FernandoS27/cube-array (diff)
downloadyuzu-6c8b788d32fc760ef8aedff5363ebc5c63a2b049.tar.gz
yuzu-6c8b788d32fc760ef8aedff5363ebc5c63a2b049.tar.xz
yuzu-6c8b788d32fc760ef8aedff5363ebc5c63a2b049.zip
yuzu/main: Fix compiler warning
-rw-r--r--src/yuzu/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 74a44be37..c3c85f1ac 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -933,7 +933,8 @@ void GMainWindow::OnGameListDumpRomFS(u64 program_id, const std::string& game_pa
933 const auto full = res == "Full"; 933 const auto full = res == "Full";
934 const auto entry_size = CalculateRomFSEntrySize(extracted, full); 934 const auto entry_size = CalculateRomFSEntrySize(extracted, full);
935 935
936 QProgressDialog progress(tr("Extracting RomFS..."), tr("Cancel"), 0, entry_size, this); 936 QProgressDialog progress(tr("Extracting RomFS..."), tr("Cancel"), 0,
937 static_cast<s32>(entry_size), this);
937 progress.setWindowModality(Qt::WindowModal); 938 progress.setWindowModality(Qt::WindowModal);
938 progress.setMinimumDuration(100); 939 progress.setMinimumDuration(100);
939 940