From 1bf1f458d0b099e49409500d613e650aca4749c4 Mon Sep 17 00:00:00 2001 From: KamFretoZ <14798312+kamfretoz@users.noreply.github.com> Date: Tue, 9 Dec 2025 18:36:00 +0700 Subject: [PATCH] Qt/Shortcut: Fix missing parenthesis --- pcsx2-qt/ShortcutCreationDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2-qt/ShortcutCreationDialog.cpp b/pcsx2-qt/ShortcutCreationDialog.cpp index b64ed5421e..d5d22e10d6 100644 --- a/pcsx2-qt/ShortcutCreationDialog.cpp +++ b/pcsx2-qt/ShortcutCreationDialog.cpp @@ -203,7 +203,7 @@ void ShortcutCreationDialog::CreateShortcut(const std::string name, const std::s if (FAILED(res)) { Console.ErrorFmt("Failed to create shortcut: CoInitialize failed ({})", str_error(res)); - QMessageBox::critical(this, tr("Failed to create shortcut"), tr("CoInitialize failed (%1").arg(str_error(res)), QMessageBox::StandardButton::Ok, QMessageBox::StandardButton::Ok); + QMessageBox::critical(this, tr("Failed to create shortcut"), tr("CoInitialize failed (%1)").arg(str_error(res)), QMessageBox::StandardButton::Ok, QMessageBox::StandardButton::Ok); return; }