From 5bb46b2b36fde4af9a379ecf8b9988fbe7fc5b48 Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Sat, 20 Apr 2019 14:21:09 -0400 Subject: [PATCH] Forward Savedata FS functions to core FS --- src/LibHac/IO/Save/SaveDataFileSystem.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/LibHac/IO/Save/SaveDataFileSystem.cs b/src/LibHac/IO/Save/SaveDataFileSystem.cs index aa8c2ff1..2ec9616a 100644 --- a/src/LibHac/IO/Save/SaveDataFileSystem.cs +++ b/src/LibHac/IO/Save/SaveDataFileSystem.cs @@ -119,22 +119,22 @@ namespace LibHac.IO.Save public void CreateDirectory(string path) { - throw new System.NotImplementedException(); + SaveDataFileSystemCore.CreateDirectory(path); } public void CreateFile(string path, long size, CreateFileOptions options) { - throw new System.NotImplementedException(); + SaveDataFileSystemCore.CreateFile(path, size, options); } public void DeleteDirectory(string path) { - throw new System.NotImplementedException(); + SaveDataFileSystemCore.DeleteDirectory(path); } public void DeleteFile(string path) { - throw new System.NotImplementedException(); + SaveDataFileSystemCore.DeleteFile(path); } public IDirectory OpenDirectory(string path, OpenDirectoryMode mode) @@ -149,12 +149,12 @@ namespace LibHac.IO.Save public void RenameDirectory(string srcPath, string dstPath) { - throw new System.NotImplementedException(); + SaveDataFileSystemCore.RenameDirectory(srcPath, dstPath); } public void RenameFile(string srcPath, string dstPath) { - throw new System.NotImplementedException(); + SaveDataFileSystemCore.RenameFile(srcPath, dstPath); } public bool DirectoryExists(string path) => SaveDataFileSystemCore.DirectoryExists(path);