mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 10:26:38 +00:00
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.
This commit is contained in:
parent
d3147bab5a
commit
4bc4cacdd0
1 changed files with 4 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue