diff options
| author | AboodMadridista <41301312+AboodMadridista@users.noreply.github.com> | 2018-08-03 08:58:48 +0800 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-08-02 21:58:48 -0300 |
| commit | c68bca5396f8a5e08cd8234ea0c7a8a2174eba91 (patch) | |
| tree | 68051360ad87c194ca37319769c64c9d30c787c3 | |
| parent | a9a2c0c2f59e1354ca27bdf66d23fcc13e6025d6 (diff) | |
Use the more specific NotImplementedException type instead of just Exception (#322)
| -rw-r--r-- | Ryujinx.HLE/OsHle/Horizon.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/OsHle/Horizon.cs b/Ryujinx.HLE/OsHle/Horizon.cs index 0318fba5..f420dc0d 100644 --- a/Ryujinx.HLE/OsHle/Horizon.cs +++ b/Ryujinx.HLE/OsHle/Horizon.cs @@ -93,7 +93,7 @@ namespace Ryujinx.HLE.OsHle if (!MainProcess.Metadata.Is64Bits) { - throw new Exception("32-bit titles are unsupported!"); + throw new NotImplementedException("32-bit titles are unsupported!"); } LoadNso("rtld"); |
