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)
{