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.
This commit is contained in:
Zephyron 2025-02-02 15:20:50 +10:00
parent cf43fd8038
commit 6b9c239fbd
No known key found for this signature in database
GPG key ID: 2177ADED8AC966AF

View file

@ -4786,14 +4786,7 @@ void GMainWindow::OnMouseActivity() {
void GMainWindow::OnCheckFirmwareDecryption() { void GMainWindow::OnCheckFirmwareDecryption() {
system->GetFileSystemController().CreateFactories(*vfs); system->GetFileSystemController().CreateFactories(*vfs);
if (!ContentManager::AreKeysPresent()) { // Removed warning message
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."));
}
SetFirmwareVersion(); SetFirmwareVersion();
UpdateMenuState(); UpdateMenuState();
} }