mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:08:38 +00:00
d5cc919369
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`.
21 lines
547 B
C#
21 lines
547 B
C#
using Ryujinx.HLE.FileSystem;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Lr
|
|
{
|
|
[Service("lr")]
|
|
class ILocationResolverManager : IpcService
|
|
{
|
|
public ILocationResolverManager(ServiceCtx context) { }
|
|
|
|
[Command(0)]
|
|
// OpenLocationResolver()
|
|
public ResultCode OpenLocationResolver(ServiceCtx context)
|
|
{
|
|
StorageId storageId = (StorageId)context.RequestData.ReadByte();
|
|
|
|
MakeObject(context, new ILocationResolver(storageId));
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |