Add IFileSystemProxy command 53.
This commit is contained in:
parent
341b8751b9
commit
71f94578b5
1 changed files with 9 additions and 0 deletions
|
@ -28,6 +28,7 @@ namespace Ryujinx.HLE.HOS.Services.FspSrv
|
|||
{ 18, OpenSdCardFileSystem },
|
||||
{ 51, OpenSaveDataFileSystem },
|
||||
{ 52, OpenSaveDataFileSystemBySystemSaveDataId },
|
||||
{ 53, OpenReadOnlySaveDataFileSystem },
|
||||
{ 200, OpenDataStorageByCurrentProcess },
|
||||
{ 202, OpenDataStorageByDataId },
|
||||
{ 203, OpenPatchDataStorageByCurrentProcess },
|
||||
|
@ -135,6 +136,14 @@ namespace Ryujinx.HLE.HOS.Services.FspSrv
|
|||
return 0;
|
||||
}
|
||||
|
||||
// OpenReadOnlySaveDataFileSystem(u8 save_data_space_id, ...) -> object<> ...
|
||||
public long OpenReadOnlySaveDataFileSystem(ServiceCtx context)
|
||||
{
|
||||
LoadSaveDataFileSystem(context);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
// OpenDataStorageByCurrentProcess() -> object<nn::fssrv::sf::IStorage> dataStorage
|
||||
public long OpenDataStorageByCurrentProcess(ServiceCtx context)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue