More partial class fixes

This commit is contained in:
KeatonTheBot 2026-05-11 00:48:53 -05:00
parent 45ab0295aa
commit ea152abd62
4 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@ using Ryujinx.HLE.HOS.Services.Caps.Types;
namespace Ryujinx.HLE.HOS.Services.Caps
{
[Service("caps:su")] // 6.0.0+
internal class IScreenShotApplicationService : IpcService
internal partial class IScreenShotApplicationService : IpcService
{
private const ulong ScreenshotDataSize = 0x384000;
private const ulong ApplicationDataSize = 0x404;

View file

@ -1,7 +1,7 @@
namespace Ryujinx.HLE.HOS.Services.Notification
{
[Service("notif:s")] // 9.0.0+
class INotificationServices : IpcService
partial class INotificationServices : IpcService
{
public INotificationServices(ServiceCtx context) { }

View file

@ -3,7 +3,7 @@ using Ryujinx.Common.Logging;
namespace Ryujinx.HLE.HOS.Services.Notification
{
[Service("notif:a")] // 9.0.0+
class INotificationServicesForApplication : IpcService
partial class INotificationServicesForApplication : IpcService
{
public INotificationServicesForApplication(ServiceCtx context) { }

View file

@ -6,7 +6,7 @@ using System;
namespace Ryujinx.HLE.HOS.Services.Notification
{
class INotificationSystemEventAccessor : IpcService
partial class INotificationSystemEventAccessor : IpcService
{
private readonly KEvent _getNotificationSendingNotifierEvent;