Qt/Host: Clarify download error message

This is used if it can't write the downloaded data
This commit is contained in:
KamFretoZ 2025-12-08 16:59:41 +07:00 committed by lightningterror
parent c6437bccad
commit cee01a22e1

View File

@ -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;
}