diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-04-07 08:49:19 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-04-07 08:49:19 +0200 |
commit | 1ad4c98a5c5012e89ed256c17ee33f523ff91ec3 (patch) | |
tree | c9e48c960c3bfe577927f31b5402efb883472049 /src/core/hle/service | |
parent | fsp-srv: Update to 12.x (diff) | |
download | yuzu-1ad4c98a5c5012e89ed256c17ee33f523ff91ec3.tar yuzu-1ad4c98a5c5012e89ed256c17ee33f523ff91ec3.tar.gz yuzu-1ad4c98a5c5012e89ed256c17ee33f523ff91ec3.tar.bz2 yuzu-1ad4c98a5c5012e89ed256c17ee33f523ff91ec3.tar.lz yuzu-1ad4c98a5c5012e89ed256c17ee33f523ff91ec3.tar.xz yuzu-1ad4c98a5c5012e89ed256c17ee33f523ff91ec3.tar.zst yuzu-1ad4c98a5c5012e89ed256c17ee33f523ff91ec3.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp index 1f47b6c20..a0215c4d7 100644 --- a/src/core/hle/service/filesystem/fsp_srv.cpp +++ b/src/core/hle/service/filesystem/fsp_srv.cpp @@ -118,9 +118,13 @@ public: explicit IFile(Core::System& system_, FileSys::VirtualFile backend_) : ServiceFramework{system_, "IFile"}, backend(std::move(backend_)) { static const FunctionInfo functions[] = { - {0, &IFile::Read, "Read"}, {1, &IFile::Write, "Write"}, - {2, &IFile::Flush, "Flush"}, {3, &IFile::SetSize, "SetSize"}, - {4, &IFile::GetSize, "GetSize"}, {5, nullptr, "OperateRange"}, + {0, &IFile::Read, "Read"}, + {1, &IFile::Write, "Write"}, + {2, &IFile::Flush, "Flush"}, + {3, &IFile::SetSize, "SetSize"}, + {4, &IFile::GetSize, "GetSize"}, + {5, nullptr, "OperateRange"}, + {6, nullptr, "OperateRangeWithBuffer"}, }; RegisterHandlers(functions); } |