summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-09-17 00:14:43 +0200
committerLioncash <mathew1800@gmail.com>2020-09-17 00:16:04 +0200
commit0e80567bef380843f5fc9bc00b70f14c4bd577b1 (patch)
tree552dc5595866d8ab498dd879a3664f4bad60ac31 /src/core/hle/service/filesystem
parentloader/nso: Remove unnecessary [[maybe_unused]] (diff)
downloadyuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar
yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar.gz
yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar.bz2
yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar.lz
yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar.xz
yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar.zst
yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.zip
Diffstat (limited to 'src/core/hle/service/filesystem')
-rw-r--r--src/core/hle/service/filesystem/filesystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.cpp b/src/core/hle/service/filesystem/filesystem.cpp
index 2cee1193c..54a5fb84b 100644
--- a/src/core/hle/service/filesystem/filesystem.cpp
+++ b/src/core/hle/service/filesystem/filesystem.cpp
@@ -379,7 +379,7 @@ ResultVal<FileSys::VirtualFile> FileSystemController::OpenBISPartitionStorage(
return FileSys::ERROR_ENTITY_NOT_FOUND;
}
- auto part = bis_factory->OpenPartitionStorage(id);
+ auto part = bis_factory->OpenPartitionStorage(id, system.GetFilesystem());
if (part == nullptr) {
return FileSys::ERROR_INVALID_ARGUMENT;
}