summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
m---------externals/dynarmic0
-rw-r--r--src/core/hle/kernel/k_scheduler_lock.h1
-rw-r--r--src/core/hle/kernel/svc.cpp2
3 files changed, 2 insertions, 1 deletions
diff --git a/externals/dynarmic b/externals/dynarmic
Subproject 0e1112b7df77ae55a62a51622940d5c8f9e8c84 Subproject 4a9a0d07f7376b439430e686721e8176c7b56ce
diff --git a/src/core/hle/kernel/k_scheduler_lock.h b/src/core/hle/kernel/k_scheduler_lock.h
index 2d675b39e..2f1c1f691 100644
--- a/src/core/hle/kernel/k_scheduler_lock.h
+++ b/src/core/hle/kernel/k_scheduler_lock.h
@@ -10,6 +10,7 @@
10#include "common/assert.h" 10#include "common/assert.h"
11#include "common/spin_lock.h" 11#include "common/spin_lock.h"
12#include "core/hardware_properties.h" 12#include "core/hardware_properties.h"
13#include "core/hle/kernel/kernel.h"
13 14
14namespace Kernel { 15namespace Kernel {
15 16
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 2d225392f..de3ed25da 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -1583,7 +1583,7 @@ static void ExitThread32(Core::System& system) {
1583 1583
1584/// Sleep the current thread 1584/// Sleep the current thread
1585static void SleepThread(Core::System& system, s64 nanoseconds) { 1585static void SleepThread(Core::System& system, s64 nanoseconds) {
1586 LOG_DEBUG(Kernel_SVC, "called nanoseconds={}", nanoseconds); 1586 LOG_TRACE(Kernel_SVC, "called nanoseconds={}", nanoseconds);
1587 1587
1588 enum class SleepType : s64 { 1588 enum class SleepType : s64 {
1589 YieldWithoutCoreMigration = 0, 1589 YieldWithoutCoreMigration = 0,