diff options
author | Zephyron <zephyron@citron-emu.org> | 2025-02-02 15:20:50 +1000 |
---|---|---|
committer | Zephyron <zephyron@citron-emu.org> | 2025-02-02 15:20:50 +1000 |
commit | 6b9c239fbd7f244f7d419802b324b48218a048b7 (patch) | |
tree | a9b6f5b7c4422a413af8db3e37e1751598772a93 /src | |
parent | cf43fd80387e0165a5ee0acf60048c403be448b9 (diff) |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/citron/main.cpp | 9 |
1 files changed, 1 insertions, 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. " - "<br>Please follow <a href='https://citron-emu.org/help/quickstart/'>the citron " - "quickstart guide</a> to get all your keys, firmware and " - "games.")); - } + // Removed warning message SetFirmwareVersion(); UpdateMenuState(); } |