diff options
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 8335d502e..7936c5b56 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -29,7 +29,7 @@ System::~System() = default; | |||
| 29 | 29 | ||
| 30 | /// Runs a CPU core while the system is powered on | 30 | /// Runs a CPU core while the system is powered on |
| 31 | static void RunCpuCore(std::shared_ptr<Cpu> cpu_state) { | 31 | static void RunCpuCore(std::shared_ptr<Cpu> cpu_state) { |
| 32 | while (Core::System().GetInstance().IsPoweredOn()) { | 32 | while (Core::System::GetInstance().IsPoweredOn()) { |
| 33 | cpu_state->RunLoop(true); | 33 | cpu_state->RunLoop(true); |
| 34 | } | 34 | } |
| 35 | } | 35 | } |