diff options
| author | 2023-05-11 17:29:33 -0400 | |
|---|---|---|
| committer | 2023-05-11 17:30:30 -0400 | |
| commit | 351079a4baf94290c32aa132a6e963b16636425f (patch) | |
| tree | 65c9f9018a9cb6985422037e3a660a0fe9a45557 /src/core/hle/service/filesystem | |
| parent | am: stub CreateCacheStorage (diff) | |
| download | yuzu-351079a4baf94290c32aa132a6e963b16636425f.tar.gz yuzu-351079a4baf94290c32aa132a6e963b16636425f.tar.xz yuzu-351079a4baf94290c32aa132a6e963b16636425f.zip | |
fs: adjust future save path
Diffstat (limited to 'src/core/hle/service/filesystem')
| -rw-r--r-- | src/core/hle/service/filesystem/fsp_srv.cpp | 4 |
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 3a142f5d0..f73a864c3 100644 --- a/src/core/hle/service/filesystem/fsp_srv.cpp +++ b/src/core/hle/service/filesystem/fsp_srv.cpp | |||
| @@ -310,8 +310,8 @@ private: | |||
| 310 | class IFileSystem final : public ServiceFramework<IFileSystem> { | 310 | class IFileSystem final : public ServiceFramework<IFileSystem> { |
| 311 | public: | 311 | public: |
| 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"}, |