mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-18 01:36:41 +00:00
rename some calls to current names (#61)
This commit is contained in:
parent
d4a3e8267b
commit
e2a80ba29e
1 changed files with 10 additions and 10 deletions
|
@ -13,28 +13,28 @@ namespace Ryujinx.Core.OsHle.Services.FspSrv
|
||||||
{
|
{
|
||||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||||
{
|
{
|
||||||
{ 1, Initialize },
|
{ 1, SetCurrentProcess },
|
||||||
{ 18, MountSdCard },
|
{ 18, OpenSdCardFileSystem },
|
||||||
{ 51, MountSaveData },
|
{ 51, OpenSaveDataFileSystem },
|
||||||
{ 200, OpenDataStorageByCurrentProcess },
|
{ 200, OpenDataStorageByCurrentProcess },
|
||||||
{ 203, OpenRomStorage },
|
{ 203, OpenPatchDataStorageByCurrentProcess },
|
||||||
{ 1005, GetGlobalAccessLogMode }
|
{ 1005, GetGlobalAccessLogMode }
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
public long Initialize(ServiceCtx Context)
|
public long SetCurrentProcess(ServiceCtx Context)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public long MountSdCard(ServiceCtx Context)
|
public long OpenSdCardFileSystem(ServiceCtx Context)
|
||||||
{
|
{
|
||||||
MakeObject(Context, new IFileSystem(Context.Ns.VFs.GetSdCardPath()));
|
MakeObject(Context, new IFileSystem(Context.Ns.VFs.GetSdCardPath()));
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public long MountSaveData(ServiceCtx Context)
|
public long OpenSaveDataFileSystem(ServiceCtx Context)
|
||||||
{
|
{
|
||||||
MakeObject(Context, new IFileSystem(Context.Ns.VFs.GetGameSavesPath()));
|
MakeObject(Context, new IFileSystem(Context.Ns.VFs.GetGameSavesPath()));
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ namespace Ryujinx.Core.OsHle.Services.FspSrv
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public long OpenRomStorage(ServiceCtx Context)
|
public long OpenPatchDataStorageByCurrentProcess(ServiceCtx Context)
|
||||||
{
|
{
|
||||||
MakeObject(Context, new IStorage(Context.Ns.VFs.RomFs));
|
MakeObject(Context, new IStorage(Context.Ns.VFs.RomFs));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue