diff options
| author | 2018-07-02 10:13:26 -0600 | |
|---|---|---|
| committer | 2018-07-02 21:45:47 -0400 | |
| commit | 638956aa81de255bf4bbd4e69a717eabf4ceadb9 (patch) | |
| tree | 5783dda790575e047fa757d8c56e11f3fffe7646 /src/core/core_cpu.cpp | |
| parent | Merge pull request #608 from Subv/depth (diff) | |
| download | yuzu-638956aa81de255bf4bbd4e69a717eabf4ceadb9.tar.gz yuzu-638956aa81de255bf4bbd4e69a717eabf4ceadb9.tar.xz yuzu-638956aa81de255bf4bbd4e69a717eabf4ceadb9.zip | |
Rename logging macro back to LOG_*
Diffstat (limited to 'src/core/core_cpu.cpp')
| -rw-r--r-- | src/core/core_cpu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core_cpu.cpp b/src/core/core_cpu.cpp index 099f2bb1a..f22d6a9d0 100644 --- a/src/core/core_cpu.cpp +++ b/src/core/core_cpu.cpp | |||
| @@ -56,7 +56,7 @@ Cpu::Cpu(std::shared_ptr<CpuBarrier> cpu_barrier, size_t core_index) | |||
| 56 | arm_interface = std::make_shared<ARM_Dynarmic>(); | 56 | arm_interface = std::make_shared<ARM_Dynarmic>(); |
| 57 | #else | 57 | #else |
| 58 | cpu_core = std::make_shared<ARM_Unicorn>(); | 58 | cpu_core = std::make_shared<ARM_Unicorn>(); |
| 59 | NGLOG_WARNING(Core, "CPU JIT requested, but Dynarmic not available"); | 59 | LOG_WARNING(Core, "CPU JIT requested, but Dynarmic not available"); |
| 60 | #endif | 60 | #endif |
| 61 | } else { | 61 | } else { |
| 62 | arm_interface = std::make_shared<ARM_Unicorn>(); | 62 | arm_interface = std::make_shared<ARM_Unicorn>(); |
| @@ -75,7 +75,7 @@ void Cpu::RunLoop(bool tight_loop) { | |||
| 75 | // If we don't have a currently active thread then don't execute instructions, | 75 | // If we don't have a currently active thread then don't execute instructions, |
| 76 | // instead advance to the next event and try to yield to the next thread | 76 | // instead advance to the next event and try to yield to the next thread |
| 77 | if (Kernel::GetCurrentThread() == nullptr) { | 77 | if (Kernel::GetCurrentThread() == nullptr) { |
| 78 | NGLOG_TRACE(Core, "Core-{} idling", core_index); | 78 | LOG_TRACE(Core, "Core-{} idling", core_index); |
| 79 | 79 | ||
| 80 | if (IsMainCore()) { | 80 | if (IsMainCore()) { |
| 81 | CoreTiming::Idle(); | 81 | CoreTiming::Idle(); |