From 04d833d3e67b5a60007eaccf37681a6f9e54b0df Mon Sep 17 00:00:00 2001 From: elad335 <18193363+elad335@users.noreply.github.com> Date: Sun, 6 Apr 2025 08:41:23 +0300 Subject: [PATCH] Fix #17000 --- rpcs3/rpcs3qt/game_list_frame.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/rpcs3qt/game_list_frame.cpp b/rpcs3/rpcs3qt/game_list_frame.cpp index 5f9267abce..a294d69cc6 100644 --- a/rpcs3/rpcs3qt/game_list_frame.cpp +++ b/rpcs3/rpcs3qt/game_list_frame.cpp @@ -2363,7 +2363,7 @@ void game_list_frame::BatchActionBySerials(progress_dialog* pdlg, const std::set connect(future_watcher, &QFutureWatcher::finished, this, [=, this]() { - pdlg->setLabelText(progressLabel.arg(*index).arg(serials_size)); + pdlg->setLabelText(progressLabel.arg(+*index).arg(serials_size)); pdlg->setCancelButtonText(tr("OK")); QApplication::beep(); @@ -2396,7 +2396,7 @@ void game_list_frame::BatchActionBySerials(progress_dialog* pdlg, const std::set return; } - pdlg->setLabelText(progressLabel.arg(*index).arg(serials_size)); + pdlg->setLabelText(progressLabel.arg(+*index).arg(serials_size)); pdlg->setCancelButtonText(tr("OK")); connect(pdlg, &progress_dialog::canceled, this, [pdlg](){ pdlg->deleteLater(); }); QApplication::beep();