From df8dab542a4f3ce5e79700315333fe4d3e80c05a Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Sat, 26 Oct 2019 16:56:15 -0500 Subject: [PATCH] Allow setting system save owner to 0 for now --- src/LibHac/FsService/FileSystemProxy.cs | 4 ++-- src/hactoolnet/ResultLog.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/LibHac/FsService/FileSystemProxy.cs b/src/LibHac/FsService/FileSystemProxy.cs index 43387408..ba3f747b 100644 --- a/src/LibHac/FsService/FileSystemProxy.cs +++ b/src/LibHac/FsService/FileSystemProxy.cs @@ -444,8 +444,8 @@ namespace LibHac.FsService if (createInfo.OwnerId == TitleId.Zero) { - // Assign the current program's ID - throw new NotImplementedException(); + // todo: Assign the current program's ID + // throw new NotImplementedException(); } // Missing permission checks diff --git a/src/hactoolnet/ResultLog.cs b/src/hactoolnet/ResultLog.cs index ad4da3a6..41778d63 100644 --- a/src/hactoolnet/ResultLog.cs +++ b/src/hactoolnet/ResultLog.cs @@ -32,7 +32,7 @@ namespace hactoolnet method.Name.StartsWith(nameof(IFileSystem.GetEntryType)) || method.Name.StartsWith(nameof(IAttributeFileSystem.GetFileAttributes))) { - // return; + return; } string methodName = $"{method.DeclaringType?.FullName}.{method.Name}";