diff options
| author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2020-09-16 23:43:30 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-16 23:43:30 +0000 |
| commit | 62de0220fe8e5e5de26ee96c43a110faea0dc71e (patch) | |
| tree | 988f711352f4ec0bd56bd4a517a8b2b628fcb9f9 /src/core/core.h | |
| parent | b0ae8265ea0aea16bfe37dce96cc3f758fd35feb (diff) | |
| parent | a62c1999c520f88513d9b0cf6e3a5c3a548d51ac (diff) | |
Merge pull request #4662 from lioncash/factory
bis_factory/romfs_factory: Eliminate dependencies on the global system instance
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: Service::SM::ServiceManager& ServiceManager(); const Service::SM::ServiceManager& ServiceManager() const; - void SetFilesystem(std::shared_ptr<FileSys::VfsFilesystem> vfs); + void SetFilesystem(FileSys::VirtualFilesystem vfs); - std::shared_ptr<FileSys::VfsFilesystem> GetFilesystem() const; + FileSys::VirtualFilesystem GetFilesystem() const; void RegisterCheatList(const std::vector<Memory::CheatEntry>& list, const std::array<u8, 0x20>& build_id, VAddr main_region_begin, |
