From dccba86dded087624b93257cbea299c7ee633744 Mon Sep 17 00:00:00 2001 From: KamFretoZ <14798312+kamfretoz@users.noreply.github.com> Date: Tue, 6 Feb 2024 21:47:09 +0700 Subject: [PATCH] Qt: Default to No for exit Memcard abort msgbox --- pcsx2-qt/MainWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2-qt/MainWindow.cpp b/pcsx2-qt/MainWindow.cpp index f60ab33763012..e286b3077f4a5 100644 --- a/pcsx2-qt/MainWindow.cpp +++ b/pcsx2-qt/MainWindow.cpp @@ -1046,10 +1046,10 @@ bool MainWindow::shouldAbortForMemcardBusy(const VMLock& lock) { if (MemcardBusy::IsBusy() && !GSDumpReplayer::IsReplayingDump()) { - const QMessageBox::StandardButton res = QMessageBox::question( + const QMessageBox::StandardButton res = QMessageBox::critical( lock.getDialogParent(), tr("WARNING: Memory Card Busy"), - tr("WARNING: Your memory card is still writing data. Shutting down now will IRREVERSIBLY DESTROY YOUR MEMORY CARD. It is strongly recommended to resume your game and let it finish writing to your memory card.\n\nDo you wish to shutdown anyways and IRREVERSIBLY DESTROY YOUR MEMORY CARD?")); + tr("WARNING: Your memory card is still writing data. Shutting down now WILL IRREVERSIBLY DESTROY YOUR MEMORY CARD. It is strongly recommended to resume your game and let it finish writing to your memory card.

Do you wish to shutdown anyways and IRREVERSIBLY DESTROY YOUR MEMORY CARD?"), QMessageBox::Yes | QMessageBox::No, QMessageBox::No); if (res != QMessageBox::Yes) {