mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-22 01:10:18 +00:00
This PR cleaned up a bit the HLE folder and the VirtualFileSystem one, since we use LibHac, we can use some class of it directly instead of duplicate things. The "Content" of VFS folder is removed since it should be handled in the NCM service directly. A larger cleanup should be done later since there is still be duplicated code here and there.
22 lines
No EOL
606 B
C#
22 lines
No EOL
606 B
C#
using LibHac.Ncm;
|
|
using Ryujinx.HLE.HOS.Services.Ncm.Lr.LocationResolverManager;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ncm.Lr
|
|
{
|
|
[Service("lr")]
|
|
class ILocationResolverManager : IpcService
|
|
{
|
|
public ILocationResolverManager(ServiceCtx context) { }
|
|
|
|
[CommandHipc(0)]
|
|
// OpenLocationResolver()
|
|
public ResultCode OpenLocationResolver(ServiceCtx context)
|
|
{
|
|
StorageId storageId = (StorageId)context.RequestData.ReadByte();
|
|
|
|
MakeObject(context, new ILocationResolver(storageId));
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |