diff --git a/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs b/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs index e29a040f1..c22bd335b 100644 --- a/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs +++ b/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs @@ -465,6 +465,15 @@ namespace Ryujinx.HLE.HOS.Services.Fs return ResultCode.Success; } + [Command(205)] + // OpenDataStorageWithProgramIndex(u8 storageId) -> object + public ResultCode OpenDataStorageWithProgramIndex(ServiceCtx context) + { + byte unknown = context.RequestData.ReadByte(); + MakeObject(context, new FileSystemProxy.IStorage(context.Device.FileSystem.RomFs.AsStorage())); + return ResultCode.Success; + } + [Command(400)] // OpenDataStorageByCurrentProcess() -> object dataStorage public ResultCode OpenDeviceOperator(ServiceCtx context)