From cee01a22e1b35c777a08d6b3b2222554182cea43 Mon Sep 17 00:00:00 2001 From: KamFretoZ <14798312+kamfretoz@users.noreply.github.com> Date: Mon, 8 Dec 2025 16:59:41 +0700 Subject: [PATCH] Qt/Host: Clarify download error message This is used if it can't write the downloaded data --- 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 df88a2ebed..be20ffef58 100644 --- a/pcsx2-qt/QtHost.cpp +++ b/pcsx2-qt/QtHost.cpp @@ -1586,7 +1586,7 @@ bool QtHost::DownloadFile(QWidget* parent, const QString& title, std::string url !FileSystem::WriteBinaryFile(path.c_str(), data.data(), data.size())) { QMessageBox::critical(parent, qApp->translate("EmuThread", "Error"), - qApp->translate("EmuThread", "Failed to write '%1'.").arg(QString::fromStdString(path))); + qApp->translate("EmuThread", "Failed to write downloaded data to file '%1'.").arg(QString::fromStdString(path))); return false; }