diff --git a/src/duckstation-qt/qtutils.cpp b/src/duckstation-qt/qtutils.cpp index 5f893a975..7a9a1e3c0 100644 --- a/src/duckstation-qt/qtutils.cpp +++ b/src/duckstation-qt/qtutils.cpp @@ -137,8 +137,8 @@ void QtUtils::OpenURL(QWidget* parent, const QUrl& qurl) { if (!QDesktopServices::openUrl(qurl)) { - QtUtils::AsyncMessageBox(parent, QMessageBox::Critical, QObject::tr("Failed to open URL"), - QObject::tr("Failed to open URL.\n\nThe URL was: %1").arg(qurl.toString())); + QtUtils::AsyncMessageBox(parent, QMessageBox::Critical, "Failed to open URL"_L1, + QStringLiteral("Failed to open URL.\n\nThe URL was: %1").arg(qurl.toString())); } }