diff options
author | emmauss <emmausssss@gmail.com> | 2020-01-12 02:10:55 +0000 |
---|---|---|
committer | Ac_K <Acoustik666@gmail.com> | 2020-01-12 03:10:55 +0100 |
commit | e485ee049d8d9418f3bdceed8d3342cc09977f50 (patch) | |
tree | 69dea52a2dd16dd1ae7bf618aae6e25b3843e184 /Ryujinx.HLE/Exceptions/InvalidFirmwarePackageException.cs | |
parent | 1661ce99ca6b533d9f2ad9be4b89e15706cd2af6 (diff) |
System firmware installer (#791)
* firmware installer
* Add directory installation option and fix 9.x support for directory
* Fix missing system font error while installing for the first time
* Address code style comments
* Create and use InvalidFirmwarePackageException
* Fix LDj3SNuD's comments
* addressed alex's comments
* add label to status bar to show current firmware version
Co-authored-by: Thog <thog@protonmail.com>
Diffstat (limited to 'Ryujinx.HLE/Exceptions/InvalidFirmwarePackageException.cs')
-rw-r--r-- | Ryujinx.HLE/Exceptions/InvalidFirmwarePackageException.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.HLE/Exceptions/InvalidFirmwarePackageException.cs b/Ryujinx.HLE/Exceptions/InvalidFirmwarePackageException.cs new file mode 100644 index 00000000..bddd827a --- /dev/null +++ b/Ryujinx.HLE/Exceptions/InvalidFirmwarePackageException.cs @@ -0,0 +1,9 @@ +using System; + +namespace Ryujinx.HLE.Exceptions +{ + class InvalidFirmwarePackageException : Exception + { + public InvalidFirmwarePackageException(string message) : base(message) { } + } +} |