From 6b9c239fbd7f244f7d419802b324b48218a048b7 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Sun, 2 Feb 2025 15:20:50 +1000 Subject: [PATCH] Remove firmware decryption warning dialog Removes the warning message box that appears when encryption keys are missing. The check for keys is still performed but no longer displays a popup to the user. The firmware version and menu state updates are still maintained. --- src/citron/main.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/citron/main.cpp b/src/citron/main.cpp index eb1571fe6..54ccb8bb6 100644 --- a/src/citron/main.cpp +++ b/src/citron/main.cpp @@ -4786,14 +4786,7 @@ void GMainWindow::OnMouseActivity() { void GMainWindow::OnCheckFirmwareDecryption() { system->GetFileSystemController().CreateFactories(*vfs); - if (!ContentManager::AreKeysPresent()) { - QMessageBox::warning( - this, tr("Derivation Components Missing"), - tr("Encryption keys are missing. " - "
Please follow the citron " - "quickstart guide to get all your keys, firmware and " - "games.")); - } + // Removed warning message SetFirmwareVersion(); UpdateMenuState(); }