summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-19 00:10:06 +0200
committerLioncash <mathew1800@gmail.com>2018-07-19 00:18:27 +0200
commit3a4841e40302d50b21064be7bc248b249ac88467 (patch)
treea63c0f3686216645ffd3fc40f069b68c42f4423f /src/core/core.cpp
parentMerge pull request #681 from lioncash/const (diff)
downloadyuzu-3a4841e40302d50b21064be7bc248b249ac88467.tar
yuzu-3a4841e40302d50b21064be7bc248b249ac88467.tar.gz
yuzu-3a4841e40302d50b21064be7bc248b249ac88467.tar.bz2
yuzu-3a4841e40302d50b21064be7bc248b249ac88467.tar.lz
yuzu-3a4841e40302d50b21064be7bc248b249ac88467.tar.xz
yuzu-3a4841e40302d50b21064be7bc248b249ac88467.tar.zst
yuzu-3a4841e40302d50b21064be7bc248b249ac88467.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.cpp2
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;
/// 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);
}
}