diff --git a/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs b/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs index c22bd335b..9fc3ac595 100644 --- a/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs +++ b/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs @@ -465,15 +465,6 @@ 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) @@ -568,4 +559,4 @@ namespace Ryujinx.HLE.HOS.Services.Fs return (ResultCode)result.Value; } } -} \ No newline at end of file +}