summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorGravatar Liam2023-08-12 15:18:55 -0400
committerGravatar Liam2023-08-15 17:47:40 -0400
commit50eee9b2185c59c32fb82cf464230a058edd10ea (patch)
treebeebc2d0da1fa0678a067de9c12cb7d11c775748 /src/core/hle
parentfssystem: reduce overalignment of unbuffered storage operations (diff)
downloadyuzu-50eee9b2185c59c32fb82cf464230a058edd10ea.tar.gz
yuzu-50eee9b2185c59c32fb82cf464230a058edd10ea.tar.xz
yuzu-50eee9b2185c59c32fb82cf464230a058edd10ea.zip
fssystem: rework for yuzu style
Diffstat (limited to 'src/core/hle')
-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 eaaf8cdd9..6e4d26b1e 100644
--- a/src/core/hle/service/filesystem/fsp_srv.cpp
+++ b/src/core/hle/service/filesystem/fsp_srv.cpp
@@ -310,8 +310,8 @@ private:
310class IFileSystem final : public ServiceFramework<IFileSystem> { 310class IFileSystem final : public ServiceFramework<IFileSystem> {
311public: 311public:
312 explicit IFileSystem(Core::System& system_, FileSys::VirtualDir backend_, SizeGetter size_) 312 explicit IFileSystem(Core::System& system_, FileSys::VirtualDir backend_, SizeGetter size_)
313 : ServiceFramework{system_, "IFileSystem"}, backend{std::move(backend_)}, 313 : ServiceFramework{system_, "IFileSystem"}, backend{std::move(backend_)}, size{std::move(
314 size{std::move(size_)} { 314 size_)} {
315 static const FunctionInfo functions[] = { 315 static const FunctionInfo functions[] = {
316 {0, &IFileSystem::CreateFile, "CreateFile"}, 316 {0, &IFileSystem::CreateFile, "CreateFile"},
317 {1, &IFileSystem::DeleteFile, "DeleteFile"}, 317 {1, &IFileSystem::DeleteFile, "DeleteFile"},