diff options
| author | ooa113y <13thSlayer@gmail.com> | 2021-08-12 23:48:15 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-12 17:48:15 -0300 |
| commit | 3977d1f72b8f091443018b68277044a840931054 (patch) | |
| tree | 686adaed5c9b9b79bd79e39cd7778726350abf4f | |
| parent | eb181425b16567eea5c67d696f9236f868b40e92 (diff) | |
Improve firmware install error due to outdated keys (#2541)
| -rw-r--r-- | Ryujinx/Ui/MainWindow.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx/Ui/MainWindow.cs b/Ryujinx/Ui/MainWindow.cs index 8e579e78..4ac85745 100644 --- a/Ryujinx/Ui/MainWindow.cs +++ b/Ryujinx/Ui/MainWindow.cs @@ -1292,7 +1292,7 @@ namespace Ryujinx.Ui catch (LibHac.MissingKeyException ex) { Logger.Error?.Print(LogClass.Application, ex.ToString()); - UserErrorDialog.CreateUserErrorDialog(UserError.NoKeys); + UserErrorDialog.CreateUserErrorDialog(UserError.FirmwareParsingFailed); } catch (Exception ex) { |
