namespace Ryujinx.Ui.Common { /// /// Represent a common error that could be reported to the user by the emulator. /// public enum UserError { /// /// No error to report. /// Success = 0x0, /// /// No keys are present. /// NoKeys = 0x1, /// /// No firmware is installed. /// NoFirmware = 0x2, /// /// Firmware parsing failed. /// /// Most likely related to keys. FirmwareParsingFailed = 0x3, /// /// No application was found at the given path. /// ApplicationNotFound = 0x4, /// /// An unknown error. /// Unknown = 0xDEAD } }