From b8a9e10e427b20861bea2aec2a76ef36bb8c4fd3 Mon Sep 17 00:00:00 2001 From: Shyanne Date: Wed, 28 Jan 2026 11:46:24 -0500 Subject: [PATCH] Update IUserLocalCommunicationService.cs --- .../Ldn/UserServiceCreator/IUserLocalCommunicationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.HLE/HOS/Services/Ldn/UserServiceCreator/IUserLocalCommunicationService.cs b/src/Ryujinx.HLE/HOS/Services/Ldn/UserServiceCreator/IUserLocalCommunicationService.cs index a2aef0dbf..6056fec2b 100644 --- a/src/Ryujinx.HLE/HOS/Services/Ldn/UserServiceCreator/IUserLocalCommunicationService.cs +++ b/src/Ryujinx.HLE/HOS/Services/Ldn/UserServiceCreator/IUserLocalCommunicationService.cs @@ -498,7 +498,7 @@ namespace Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator // On NX only input value 1 or 3 is allowed, with an error being thrown otherwise. if (protocolValue != 1 || protocolValue != 3) { - throw new ServiceNotImplementedException(this, context, $"{GetType().FullName}: Protocol value is {protocolValue}!!"); + throw new ArgumentException($"{GetType().FullName}: Protocol value is not 1 or 3!! Protocol value: {protocolValue}"); } Logger.Stub?.PrintStub(LogClass.ServiceLdn, $"Protocol value: {protocolValue}");