aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMary <me@thog.eu>2020-11-15 21:26:49 +0100
committerGitHub <noreply@github.com>2020-11-15 21:26:49 +0100
commit4bc4cacdd0b615553a11cdcdb2aa7d3b563eac0b (patch)
treed00b8c35361481f3fff97ca0df1c9a2d302b0510
parentd3147bab5a840740253f3cc8a799866204ecaa74 (diff)
ui diag: Add missing error message for ApplicationNotFound (#1693)
I missed to add the error messages for this error code on the initial PR, this fix it.
-rw-r--r--Ryujinx/Ui/Diagnostic/UserErrorDialog.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Ryujinx/Ui/Diagnostic/UserErrorDialog.cs b/Ryujinx/Ui/Diagnostic/UserErrorDialog.cs
index 646e98fd..ccea9229 100644
--- a/Ryujinx/Ui/Diagnostic/UserErrorDialog.cs
+++ b/Ryujinx/Ui/Diagnostic/UserErrorDialog.cs
@@ -58,6 +58,8 @@ namespace Ryujinx.Ui.Diagnostic
return "Firmware not found";
case UserError.FirmwareParsingFailed:
return "Firmware parsing error";
+ case UserError.ApplicationNotFound:
+ return "Application not found";
case UserError.Unknown:
return "Unknown error";
default:
@@ -75,6 +77,8 @@ namespace Ryujinx.Ui.Diagnostic
return "Ryujinx was unable to find any firmwares installed";
case UserError.FirmwareParsingFailed:
return "Ryujinx was unable to parse the provided firmware. This is usually caused by outdated keys.";
+ case UserError.ApplicationNotFound:
+ return "Ryujinx couldn't find a valid application at the given path.";
case UserError.Unknown:
return "An unknown error occured!";
default: