summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Mat M2020-04-30 13:37:43 -0400
committerGravatar GitHub2020-04-30 13:37:43 -0400
commit0a0b6762860bbe11c64c3453b08cf0154c8334e5 (patch)
tree1fa9046283991b35eda39c53cedd5789cdd13251 /src
parentMerge pull request #3832 from ogniK5377/nim-eca-CreateServerInterface (diff)
parentfs-srv: GetFreeSpaceSize & GetTotalSpaceSize (diff)
downloadyuzu-0a0b6762860bbe11c64c3453b08cf0154c8334e5.tar.gz
yuzu-0a0b6762860bbe11c64c3453b08cf0154c8334e5.tar.xz
yuzu-0a0b6762860bbe11c64c3453b08cf0154c8334e5.zip
Merge pull request #3835 from ogniK5377/GetFreeSpaceSize-GetTotalSpaceSize
fs-srv: GetFreeSpaceSize & GetTotalSpaceSize
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp
index 6b9b4f3b9..f6503fe2f 100644
--- a/src/core/hle/service/filesystem/fsp_srv.cpp
+++ b/src/core/hle/service/filesystem/fsp_srv.cpp
@@ -316,8 +316,8 @@ public:
316 {8, &IFileSystem::OpenFile, "OpenFile"}, 316 {8, &IFileSystem::OpenFile, "OpenFile"},
317 {9, &IFileSystem::OpenDirectory, "OpenDirectory"}, 317 {9, &IFileSystem::OpenDirectory, "OpenDirectory"},
318 {10, &IFileSystem::Commit, "Commit"}, 318 {10, &IFileSystem::Commit, "Commit"},
319 {11, nullptr, "GetFreeSpaceSize"}, 319 {11, &IFileSystem::GetFreeSpaceSize, "GetFreeSpaceSize"},
320 {12, nullptr, "GetTotalSpaceSize"}, 320 {12, &IFileSystem::GetTotalSpaceSize, "GetTotalSpaceSize"},
321 {13, &IFileSystem::CleanDirectoryRecursively, "CleanDirectoryRecursively"}, 321 {13, &IFileSystem::CleanDirectoryRecursively, "CleanDirectoryRecursively"},
322 {14, nullptr, "GetFileTimeStampRaw"}, 322 {14, nullptr, "GetFileTimeStampRaw"},
323 {15, nullptr, "QueryEntry"}, 323 {15, nullptr, "QueryEntry"},