소스 검색

Use the more specific NotImplementedException type instead of just Exception (#322)

AboodMadridista 7 년 전
부모
커밋
c68bca5396
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Ryujinx.HLE/OsHle/Horizon.cs

+ 1 - 1
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");