diff options
author | yzct12345 <87620833+yzct12345@users.noreply.github.com> | 2021-08-13 20:39:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-13 20:39:45 +0200 |
commit | 001675dced1b7b751d1db4f0d6490776c613df2f (patch) | |
tree | 151923c90c42bdcede2581ddf6b56768bfcafc01 /src/core/core.cpp | |
parent | Merge pull request #6862 from german77/badsdl (diff) | |
download | yuzu-001675dced1b7b751d1db4f0d6490776c613df2f.tar yuzu-001675dced1b7b751d1db4f0d6490776c613df2f.tar.gz yuzu-001675dced1b7b751d1db4f0d6490776c613df2f.tar.bz2 yuzu-001675dced1b7b751d1db4f0d6490776c613df2f.tar.lz yuzu-001675dced1b7b751d1db4f0d6490776c613df2f.tar.xz yuzu-001675dced1b7b751d1db4f0d6490776c613df2f.tar.zst yuzu-001675dced1b7b751d1db4f0d6490776c613df2f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/core.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index d3e84c4ef..0d3c4182a 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -84,8 +84,6 @@ FileSys::StorageId GetStorageIdForFrontendSlot( } // Anonymous namespace -/*static*/ System System::s_instance; - FileSys::VirtualFile GetGameFileFromPath(const FileSys::VirtualFilesystem& vfs, const std::string& path) { // To account for split 00+01+etc files. @@ -425,6 +423,13 @@ struct System::Impl { System::System() : impl{std::make_unique<Impl>(*this)} {} System::~System() = default; +void System::InitializeGlobalInstance() { + if (s_instance) { + abort(); + } + s_instance = std::unique_ptr<System>(new System); +} + CpuManager& System::GetCpuManager() { return impl->cpu_manager; } |