diff options
| author | Ac_K <Acoustik666@gmail.com> | 2019-07-14 23:22:53 +0200 |
|---|---|---|
| committer | Thomas Guillemard <me@thog.eu> | 2019-07-14 23:22:53 +0200 |
| commit | d5cc919369c0f1551fbb251482d8a0a9a7430452 (patch) | |
| tree | 38cd72be0c59d539fc2ae820ed5ab529a1084e14 /Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs | |
| parent | 97d0c6242368f443c50395b2fa9d99a59f1df1e8 (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`.
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Lr/ILocationResolverManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |
