From 14a458a27528021f28b565261d5e70290263ba57 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 7 Jan 2024 20:14:01 +1000 Subject: [PATCH] Qt: Fix HTTP download error format string --- pcsx2-qt/QtHost.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2-qt/QtHost.cpp b/pcsx2-qt/QtHost.cpp index 04669b6928..5341f093ea 100644 --- a/pcsx2-qt/QtHost.cpp +++ b/pcsx2-qt/QtHost.cpp @@ -1414,7 +1414,7 @@ std::optional QtHost::DownloadFile(QWidget* parent, const QString& title, if (status_code != HTTPDownloader::HTTP_STATUS_OK) { QMessageBox::critical(parent, qApp->translate("EmuThread", "Error"), - qApp->translate("EmuThread", "Download failed with HTTP status code {}.").arg(status_code)); + qApp->translate("EmuThread", "Download failed with HTTP status code %1.").arg(status_code)); download_result = false; return; }