Add command version

This commit is contained in:
Alex Barney 2020-03-24 21:53:43 -07:00 committed by GitHub
parent df2abfa456
commit 343b3be18f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ namespace Ryujinx.HLE.HOS.Services.Fs
_baseCommitManager = baseCommitManager;
}
[Command(1)]
[Command(1)] // 6.0.0+
// Add(object<nn::fssrv::sf::IFileSystem>)
public ResultCode Add(ServiceCtx context)
{
@ -23,7 +23,7 @@ namespace Ryujinx.HLE.HOS.Services.Fs
return (ResultCode)result.Value;
}
[Command(2)]
[Command(2)] // 6.0.0+
// Commit()
public ResultCode Commit(ServiceCtx context)
{
@ -32,4 +32,4 @@ namespace Ryujinx.HLE.HOS.Services.Fs
return (ResultCode)result.Value;
}
}
}
}