aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2019-07-14 23:22:53 +0200
committerThomas Guillemard <me@thog.eu>2019-07-14 23:22:53 +0200
commitd5cc919369c0f1551fbb251482d8a0a9a7430452 (patch)
tree38cd72be0c59d539fc2ae820ed5ab529a1084e14
parent97d0c6242368f443c50395b2fa9d99a59f1df1e8 (diff)
Fix private on some call (#733)
Since the reflection code didn't take care about `private`, this cause regression, so I have added the flag just in case and fix calls who are declared with `private` to `public`.
-rw-r--r--Ryujinx.HLE/HOS/Services/Acc/IProfile.cs4
-rw-r--r--Ryujinx.HLE/HOS/Services/Aud/AudioRenderer/IAudioRenderer.cs2
-rw-r--r--Ryujinx.HLE/HOS/Services/Aud/IAudioRendererManager.cs2
-rw-r--r--Ryujinx.HLE/HOS/Services/IpcService.cs2
-rw-r--r--Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs2
5 files changed, 6 insertions, 6 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Acc/IProfile.cs b/Ryujinx.HLE/HOS/Services/Acc/IProfile.cs
index 336aa40d..050e4497 100644
--- a/Ryujinx.HLE/HOS/Services/Acc/IProfile.cs
+++ b/Ryujinx.HLE/HOS/Services/Acc/IProfile.cs
@@ -53,7 +53,7 @@ namespace Ryujinx.HLE.HOS.Services.Acc
[Command(10)]
// GetImageSize() -> u32
- private ResultCode GetImageSize(ServiceCtx context)
+ public ResultCode GetImageSize(ServiceCtx context)
{
context.ResponseData.Write(_profilePictureStream.Length);
@@ -62,7 +62,7 @@ namespace Ryujinx.HLE.HOS.Services.Acc
[Command(11)]
// LoadImage() -> (u32, buffer<bytes, 6>)
- private ResultCode LoadImage(ServiceCtx context)
+ public ResultCode LoadImage(ServiceCtx context)
{
long bufferPosition = context.Request.ReceiveBuff[0].Position;
long bufferLen = context.Request.ReceiveBuff[0].Size;
diff --git a/Ryujinx.HLE/HOS/Services/Aud/AudioRenderer/IAudioRenderer.cs b/Ryujinx.HLE/HOS/Services/Aud/AudioRenderer/IAudioRenderer.cs
index a07b9063..599f3d81 100644
--- a/Ryujinx.HLE/HOS/Services/Aud/AudioRenderer/IAudioRenderer.cs
+++ b/Ryujinx.HLE/HOS/Services/Aud/AudioRenderer/IAudioRenderer.cs
@@ -93,7 +93,7 @@ namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
[Command(3)]
// GetState() -> u32
- private ResultCode GetState(ServiceCtx context)
+ public ResultCode GetState(ServiceCtx context)
{
context.ResponseData.Write((int)_playState);
diff --git a/Ryujinx.HLE/HOS/Services/Aud/IAudioRendererManager.cs b/Ryujinx.HLE/HOS/Services/Aud/IAudioRendererManager.cs
index ec0c7501..29bf8320 100644
--- a/Ryujinx.HLE/HOS/Services/Aud/IAudioRendererManager.cs
+++ b/Ryujinx.HLE/HOS/Services/Aud/IAudioRendererManager.cs
@@ -179,7 +179,7 @@ namespace Ryujinx.HLE.HOS.Services.Aud
[Command(4)] // 4.0.0+
// GetAudioDeviceServiceWithRevisionInfo(nn::applet::AppletResourceUserId, u32) -> object<nn::audio::detail::IAudioDevice>
- private ResultCode GetAudioDeviceServiceWithRevisionInfo(ServiceCtx context)
+ public ResultCode GetAudioDeviceServiceWithRevisionInfo(ServiceCtx context)
{
long appletResourceUserId = context.RequestData.ReadInt64();
int revisionInfo = context.RequestData.ReadInt32();
diff --git a/Ryujinx.HLE/HOS/Services/IpcService.cs b/Ryujinx.HLE/HOS/Services/IpcService.cs
index 00907f88..456e1d75 100644
--- a/Ryujinx.HLE/HOS/Services/IpcService.cs
+++ b/Ryujinx.HLE/HOS/Services/IpcService.cs
@@ -26,7 +26,7 @@ namespace Ryujinx.HLE.HOS.Services
{
Commands = Assembly.GetExecutingAssembly().GetTypes()
.Where(type => type == GetType())
- .SelectMany(type => type.GetMethods(BindingFlags.Static | BindingFlags.Instance | BindingFlags.Public))
+ .SelectMany(type => type.GetMethods(BindingFlags.Instance | BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Public))
.SelectMany(methodInfo => methodInfo.GetCustomAttributes(typeof(CommandAttribute))
.Select(command => (((CommandAttribute)command).Id, methodInfo)))
.ToDictionary(command => command.Id, command => command.methodInfo);
diff --git a/Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs b/Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs
index 188a1720..14ed0ca7 100644
--- a/Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs
+++ b/Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs
@@ -9,7 +9,7 @@ namespace Ryujinx.HLE.HOS.Services.Lr
[Command(0)]
// OpenLocationResolver()
- private ResultCode OpenLocationResolver(ServiceCtx context)
+ public ResultCode OpenLocationResolver(ServiceCtx context)
{
StorageId storageId = (StorageId)context.RequestData.ReadByte();