From 6a03c22b088125144fc6075bba02d50dfbda9029 Mon Sep 17 00:00:00 2001 From: Maufeat Date: Sun, 31 Aug 2025 00:39:39 +0200 Subject: [PATCH] update popup wording --- src/yuzu/main.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 24c34a972c..8cf715b69a 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -5278,9 +5278,12 @@ void GMainWindow::OnCheckNcaVerification() { QMessageBox msgbox(this); msgbox.setWindowTitle(tr("NCA Verification Disabled")); - msgbox.setText(tr("NCA Verification is now disabled. This feature is required to run new " - "games and updates. Please ensure you are loading trusted NCA files into " - "the emulator, or re-enable verification in Eden's Settings if unsure.")); + msgbox.setText(tr("NCA Verification is disabled.\n" + "This is required to run new games and updates.\n" + "Running without verification can cause instability or crashes if NCA files " + "are corrupt, modified, or tampered.\n" + "If unsure, re-enable verification in Eden's Settings and use firmware " + "version 19.0.1 or below.")); msgbox.setIcon(QMessageBox::Warning); msgbox.setStandardButtons(QMessageBox::Ok); msgbox.setDefaultButton(QMessageBox::Ok);