aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/am/am.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-07 19:30:58 -0700
committerGitHub <noreply@github.com>2018-07-07 19:30:58 -0700
commitf89b47fdf7c2060223b6648af3617a9b85fe6804 (patch)
treeb660920a49f538f0ee00486c50a0d153d53c423d /src/core/hle/service/am/am.cpp
parent3417f46dd5a40a67204d5491d143bd6792e1e9fb (diff)
parent913896cbd99e414c325c9d47a987376ed6d9fffd (diff)
Merge pull request #639 from bunnei/revert-vfs
Revert "Virtual Filesystem (#597)"
Diffstat (limited to 'src/core/hle/service/am/am.cpp')
-rw-r--r--src/core/hle/service/am/am.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index 7bb13c735..a871b3eaa 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -621,7 +621,7 @@ void IApplicationFunctions::EnsureSaveData(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 4};
FileSys::Path unused;
- auto savedata = FileSystem::OpenFileSystem(FileSystem::Type::SaveData);
+ auto savedata = FileSystem::OpenFileSystem(FileSystem::Type::SaveData, unused);
if (savedata.Failed()) {
// Create the save data and return an error indicating that the operation was performed.
FileSystem::FormatFileSystem(FileSystem::Type::SaveData);