diff options
| author | 2020-09-16 18:14:43 -0400 | |
|---|---|---|
| committer | 2020-09-16 18:16:04 -0400 | |
| commit | 0e80567bef380843f5fc9bc00b70f14c4bd577b1 (patch) | |
| tree | 552dc5595866d8ab498dd879a3664f4bad60ac31 /src/core/core.h | |
| parent | loader/nso: Remove unnecessary [[maybe_unused]] (diff) | |
| download | yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar.gz yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.tar.xz yuzu-0e80567bef380843f5fc9bc00b70f14c4bd577b1.zip | |
file_sys/bis_factory: Eliminate usage of the global system accessor
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.h b/src/core/core.h index 5c6cfbffe..83ded63a5 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -316,9 +316,9 @@ public: | |||
| 316 | Service::SM::ServiceManager& ServiceManager(); | 316 | Service::SM::ServiceManager& ServiceManager(); |
| 317 | const Service::SM::ServiceManager& ServiceManager() const; | 317 | const Service::SM::ServiceManager& ServiceManager() const; |
| 318 | 318 | ||
| 319 | void SetFilesystem(std::shared_ptr<FileSys::VfsFilesystem> vfs); | 319 | void SetFilesystem(FileSys::VirtualFilesystem vfs); |
| 320 | 320 | ||
| 321 | std::shared_ptr<FileSys::VfsFilesystem> GetFilesystem() const; | 321 | FileSys::VirtualFilesystem GetFilesystem() const; |
| 322 | 322 | ||
| 323 | void RegisterCheatList(const std::vector<Memory::CheatEntry>& list, | 323 | void RegisterCheatList(const std::vector<Memory::CheatEntry>& list, |
| 324 | const std::array<u8, 0x20>& build_id, VAddr main_region_begin, | 324 | const std::array<u8, 0x20>& build_id, VAddr main_region_begin, |