Initial Setup: Reload keys before verifying firmware (#1955)
* Initial Setup: Reload keys before verifying firmware Also, display the NoKeys dialog if keyset is empty when verifying firmware. * LoadApplications: Remove the lone debug log and print the error directly
This commit is contained in:
parent
9551bfdeeb
commit
d1e24ba5c2
3 changed files with 15 additions and 2 deletions
|
@ -1035,6 +1035,11 @@ namespace Ryujinx.Ui
|
|||
thread.Start();
|
||||
}
|
||||
}
|
||||
catch (LibHac.MissingKeyException ex)
|
||||
{
|
||||
Logger.Error?.Print(LogClass.Application, ex.ToString());
|
||||
UserErrorDialog.CreateUserErrorDialog(UserError.NoKeys);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
GtkDialog.CreateErrorDialog(ex.Message);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue