diff --git a/src/LibHac/FsSystem/PartitionFileSystemCore.cs b/src/LibHac/FsSystem/PartitionFileSystemCore.cs index fe6aaa23..38964425 100644 --- a/src/LibHac/FsSystem/PartitionFileSystemCore.cs +++ b/src/LibHac/FsSystem/PartitionFileSystemCore.cs @@ -57,7 +57,7 @@ public class PartitionFileSystemCore : IFileSystem where T : unmanaged, IPart ReadOnlySpan rootPath = new[] { (byte)'/' }; - if (path == rootPath) + if (path != rootPath) return ResultFs.PathNotFound.Log(); outDirectory.Reset(new PartitionDirectory(this, mode));