Browse Source

Merge pull request #3835 from ogniK5377/GetFreeSpaceSize-GetTotalSpaceSize

fs-srv: GetFreeSpaceSize & GetTotalSpaceSize
nce_cpp
Mat M 6 years ago
committed by GitHub
parent
commit
354fd09052
  1. 4
      src/core/hle/service/filesystem/fsp_srv.cpp

4
src/core/hle/service/filesystem/fsp_srv.cpp

@ -316,8 +316,8 @@ public:
{8, &IFileSystem::OpenFile, "OpenFile"}, {8, &IFileSystem::OpenFile, "OpenFile"},
{9, &IFileSystem::OpenDirectory, "OpenDirectory"}, {9, &IFileSystem::OpenDirectory, "OpenDirectory"},
{10, &IFileSystem::Commit, "Commit"}, {10, &IFileSystem::Commit, "Commit"},
{11, nullptr, "GetFreeSpaceSize"},
{12, nullptr, "GetTotalSpaceSize"},
{11, &IFileSystem::GetFreeSpaceSize, "GetFreeSpaceSize"},
{12, &IFileSystem::GetTotalSpaceSize, "GetTotalSpaceSize"},
{13, &IFileSystem::CleanDirectoryRecursively, "CleanDirectoryRecursively"}, {13, &IFileSystem::CleanDirectoryRecursively, "CleanDirectoryRecursively"},
{14, nullptr, "GetFileTimeStampRaw"}, {14, nullptr, "GetFileTimeStampRaw"},
{15, nullptr, "QueryEntry"}, {15, nullptr, "QueryEntry"},

Loading…
Cancel
Save