diff options
author | Lioncash <mathew1800@gmail.com> | 2020-09-17 00:14:43 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-09-17 00:16:04 +0200 |
commit | 0e80567bef380843f5fc9bc00b70f14c4bd577b1 (patch) | |
tree | 552dc5595866d8ab498dd879a3664f4bad60ac31 /src/core/hle/service | |
parent | loader/nso: Remove unnecessary [[maybe_unused]] (diff) | |
download | yuzu-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')
-rw-r--r-- | src/core/hle/service/filesystem/filesystem.cpp | 2 |
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; } |