mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-14 16:16:41 +00:00
Use the more specific NotImplementedException type instead of just Exception (#322)
This commit is contained in:
parent
a9a2c0c2f5
commit
c68bca5396
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ namespace Ryujinx.HLE.OsHle
|
||||||
|
|
||||||
if (!MainProcess.Metadata.Is64Bits)
|
if (!MainProcess.Metadata.Is64Bits)
|
||||||
{
|
{
|
||||||
throw new Exception("32-bit titles are unsupported!");
|
throw new NotImplementedException("32-bit titles are unsupported!");
|
||||||
}
|
}
|
||||||
|
|
||||||
LoadNso("rtld");
|
LoadNso("rtld");
|
||||||
|
|
Loading…
Reference in a new issue