summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2017-10-23 00:13:12 -0400
committerGravatar bunnei2017-10-23 00:13:12 -0400
commit45db4bb3ea9e5a46db598eb99957bfd7d7a135f7 (patch)
tree638b55751be07e580ed4bc505c65ba27384e5927 /src/core/core.cpp
parentnso: Load more common submodules. (diff)
downloadyuzu-45db4bb3ea9e5a46db598eb99957bfd7d7a135f7.tar.gz
yuzu-45db4bb3ea9e5a46db598eb99957bfd7d7a135f7.tar.xz
yuzu-45db4bb3ea9e5a46db598eb99957bfd7d7a135f7.zip
logging: Rename category "Core_ARM11" to "Core_ARM".
Diffstat (limited to 'src/core/core.cpp')
-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 c5448630f..6358e827b 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -52,7 +52,7 @@ System::ResultStatus System::RunLoop(int tight_loop) {
52 // If we don't have a currently active thread then don't execute instructions, 52 // If we don't have a currently active thread then don't execute instructions,
53 // instead advance to the next event and try to yield to the next thread 53 // instead advance to the next event and try to yield to the next thread
54 if (Kernel::GetCurrentThread() == nullptr) { 54 if (Kernel::GetCurrentThread() == nullptr) {
55 LOG_TRACE(Core_ARM11, "Idling"); 55 LOG_TRACE(Core_ARM, "Idling");
56 CoreTiming::Idle(); 56 CoreTiming::Idle();
57 CoreTiming::Advance(); 57 CoreTiming::Advance();
58 PrepareReschedule(); 58 PrepareReschedule();