From c03f1cfeb8432c09ee2df18e88eaf840dac918dd Mon Sep 17 00:00:00 2001 From: Stenzek Date: Fri, 17 May 2024 14:21:57 +1000 Subject: [PATCH] Qt: Fix ugly popup message on Mac in setup wizard --- src/duckstation-qt/setupwizarddialog.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/duckstation-qt/setupwizarddialog.cpp b/src/duckstation-qt/setupwizarddialog.cpp index 1dace938d..840a8b8a2 100644 --- a/src/duckstation-qt/setupwizarddialog.cpp +++ b/src/duckstation-qt/setupwizarddialog.cpp @@ -44,9 +44,8 @@ bool SetupWizardDialog::canShowNextPage() { if (QMessageBox::question( this, tr("Warning"), - tr("No BIOS images were found. DuckStation will not be able to run games without a " - "BIOS image.

Are you sure you wish to continue without selecting a BIOS image?")) != - QMessageBox::Yes) + tr("No BIOS images were found. DuckStation WILL NOT be able to run games without a BIOS image.\n\nAre " + "you sure you wish to continue without selecting a BIOS image?")) != QMessageBox::Yes) { return false; }