diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 7eef25c48..2c54c1539 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -809,8 +809,7 @@ void GMainWindow::OnMenuInstallCIA() { const auto cia_progress = [&](size_t written, size_t total) { emit UpdateProgress(written, total); }; - for (int current_index = 0; current_index < filepaths.size(); current_index++) { - current_path = filepaths.at(current_index); + for (const auto current_path : filepaths) { status = Service::AM::InstallCIA(current_path.toStdString(), cia_progress); emit CIAInstallReport(status, current_path); }