From e5d47b4685589fb58c3230af95f345606a03940b Mon Sep 17 00:00:00 2001 From: Caio Oliveira Date: Mon, 27 Oct 2025 11:30:59 -0300 Subject: [PATCH] wayland: better message Signed-off-by: Caio Oliveira --- src/yuzu/main.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 91ee3d4302..68cc7715f3 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -4582,10 +4582,9 @@ void GMainWindow::OnCheckGraphicsBackend() { QMessageBox msgbox(this); msgbox.setWindowTitle(tr("Wayland Detected!")); - msgbox.setText(tr("You are running Eden under Wayland Graphics Backend.\n\n" - "It's recommended to use X11 for the best compatibility.\n\n" - "There's no plan to support Wayland at moment\n" - "Expect slow performance and crashes!")); + msgbox.setText(tr("Wayland is known to have significant performance issues and mysterious bugs.\n" + "It's recommended to use X11 instead.\n\n" + "Would you like to force it for future launches?")); msgbox.setIcon(QMessageBox::Warning); QPushButton* okButton = msgbox.addButton(tr("Use X11"), QMessageBox::AcceptRole);