From 0c72048b03aed1f454084e4e35853a96168fbe68 Mon Sep 17 00:00:00 2001 From: suyudontsueme Date: Sun, 24 Mar 2024 21:12:15 +0100 Subject: [PATCH] Resolving issue #30 [Feature Request] Proposed Rewritten Missing Keys Dialog. --- src/suyu/main.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/suyu/main.cpp b/src/suyu/main.cpp index fc0028b45d..083b5b1042 100644 --- a/src/suyu/main.cpp +++ b/src/suyu/main.cpp @@ -1756,11 +1756,9 @@ bool GMainWindow::LoadROM(const QString& filename, Service::AM::FrontendAppletPa } if (!ContentManager::AreKeysPresent()) { - QMessageBox::warning(this, tr("Derivation Components Missing"), - tr("Encryption keys are missing. " - "In order to use this emulator, " - "you need to provide your own encryption keys " - "in order to play them.")); + QMessageBox::warning(this, tr("Encryption Keys Missing"), + tr("In order to use suyu you need to provide your own encryption keys. " + "You can install them by going to Tools -> Install encryption keys.")); return false; } }