From db0aa54233d14b8feaf9fd382a3d64fda3614c4b Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sun, 22 Apr 2018 02:48:17 -0300 Subject: Print guest stack trace on a few points that can throw exceptions --- Ryujinx.Core/OsHle/Kernel/SvcHandler.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Ryujinx.Core/OsHle/Kernel/SvcHandler.cs') diff --git a/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs b/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs index c74da061..25d2767e 100644 --- a/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs +++ b/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs @@ -93,6 +93,8 @@ namespace Ryujinx.Core.OsHle.Kernel } else { + Process.PrintStackTrace(ThreadState); + throw new NotImplementedException(e.Id.ToString("x4")); } } -- cgit v1.2.3