diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-18 18:55:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-18 18:55:58 -0700 |
commit | 49b0966003caeaafe2f5455d06b16175f02686fb (patch) | |
tree | 141c8d3c09f9eca021dddedb17cdc3cc6607a19a /src/core/core.cpp | |
parent | 89f0acfd36223976afd60fca5f30881fe0ecca7f (diff) | |
parent | 10d2ab80989e1362fe9cc206e0708d7aeeda5d3a (diff) |
Merge pull request #687 from lioncash/instance
core: Don't construct instance of Core::System, just to access its live instance
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r-- | src/core/core.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 82db5cccf..9bd9f4bd9 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -26,11 +26,13 @@ namespace Core { /*static*/ System System::s_instance; +System::System() = default; + System::~System() = default; /// Runs a CPU core while the system is powered on static void RunCpuCore(std::shared_ptr<Cpu> cpu_state) { - while (Core::System().GetInstance().IsPoweredOn()) { + while (Core::System::GetInstance().IsPoweredOn()) { cpu_state->RunLoop(true); } } |