Make Cmif commands in HLE use virtual method invocation instead of reflection

# Conflicts:
#	src/Ryujinx.HLE/HOS/Services/IpcService.cs
This commit is contained in:
Aaron Robinson
2025-11-19 18:31:35 -06:00
parent 19de0d0db6
commit 8e1e2d69df
133 changed files with 298 additions and 239 deletions

View File

@@ -3,7 +3,7 @@ using Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator;
namespace Ryujinx.HLE.HOS.Services.Ldn
{
[Service("ldn:u")]
class IUserServiceCreator : IpcService
partial class IUserServiceCreator : IpcService
{
public IUserServiceCreator(ServiceCtx context) : base(context.Device.System.LdnServer) { }