mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Allow setting system save owner to 0 for now
This commit is contained in:
parent
db6269df5c
commit
df8dab542a
2 changed files with 3 additions and 3 deletions
|
@ -444,8 +444,8 @@ namespace LibHac.FsService
|
||||||
|
|
||||||
if (createInfo.OwnerId == TitleId.Zero)
|
if (createInfo.OwnerId == TitleId.Zero)
|
||||||
{
|
{
|
||||||
// Assign the current program's ID
|
// todo: Assign the current program's ID
|
||||||
throw new NotImplementedException();
|
// throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Missing permission checks
|
// Missing permission checks
|
||||||
|
|
|
@ -32,7 +32,7 @@ namespace hactoolnet
|
||||||
method.Name.StartsWith(nameof(IFileSystem.GetEntryType)) ||
|
method.Name.StartsWith(nameof(IFileSystem.GetEntryType)) ||
|
||||||
method.Name.StartsWith(nameof(IAttributeFileSystem.GetFileAttributes)))
|
method.Name.StartsWith(nameof(IAttributeFileSystem.GetFileAttributes)))
|
||||||
{
|
{
|
||||||
// return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
string methodName = $"{method.DeclaringType?.FullName}.{method.Name}";
|
string methodName = $"{method.DeclaringType?.FullName}.{method.Name}";
|
||||||
|
|
Loading…
Reference in a new issue