aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/IpcService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/IpcService.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/IpcService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Services/IpcService.cs b/Ryujinx.HLE/HOS/Services/IpcService.cs
index e3306071..01ee1158 100644
--- a/Ryujinx.HLE/HOS/Services/IpcService.cs
+++ b/Ryujinx.HLE/HOS/Services/IpcService.cs
@@ -153,7 +153,7 @@ namespace Ryujinx.HLE.HOS.Services
{
string dbgMessage = $"{service.GetType().FullName}: {commandId}";
- throw new ServiceNotImplementedException(service, context, dbgMessage, false);
+ throw new ServiceNotImplementedException(service, context, dbgMessage);
}
}
@@ -194,7 +194,7 @@ namespace Ryujinx.HLE.HOS.Services
{
string dbgMessage = $"{GetType().FullName}: {commandId}";
- throw new ServiceNotImplementedException(this, context, dbgMessage, true);
+ throw new ServiceNotImplementedException(this, context, dbgMessage);
}
}