From feb77793dfccc404b1f683da233157ebd69f9173 Mon Sep 17 00:00:00 2001 From: kd-11 <15904127+kd-11@users.noreply.github.com> Date: Tue, 7 May 2019 09:02:03 +0300 Subject: [PATCH] typo fix - Minor argument change requested by Megamouse --- rpcs3/rpcs3qt/game_list_frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/game_list_frame.cpp b/rpcs3/rpcs3qt/game_list_frame.cpp index 69ea7e9135..13aaa8a056 100644 --- a/rpcs3/rpcs3qt/game_list_frame.cpp +++ b/rpcs3/rpcs3qt/game_list_frame.cpp @@ -1099,7 +1099,7 @@ void game_list_frame::BatchCreatePPUCaches() return; } - progress_dialog* pdlg = new progress_dialog(tr("Creating all PPU caches"), tr("Cancel"), 0, m_game_data.size(), this); + progress_dialog* pdlg = new progress_dialog(tr("Creating all PPU caches"), tr("Cancel"), 0, total, this); pdlg->setWindowTitle(tr("PPU Cache Batch Creation")); pdlg->setAutoClose(false); pdlg->setAutoReset(false);