summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar comex2020-12-29 14:22:35 -0500
committerGravatar comex2020-12-29 14:22:35 -0500
commitb36896b90e825bdc89a61c99ece3def6c15c012a (patch)
treed4ba824623723a997c3aff339d16a994fbb19902 /src/core
parentMerge pull request #5236 from gal20/udp_client_patch (diff)
downloadyuzu-b36896b90e825bdc89a61c99ece3def6c15c012a.tar.gz
yuzu-b36896b90e825bdc89a61c99ece3def6c15c012a.tar.xz
yuzu-b36896b90e825bdc89a61c99ece3def6c15c012a.zip
Add missing include of "core/hle/kernel/kernel.h"
This is needed as the header invokes methods on KernelCore.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/kernel/k_scheduler_lock.h1
1 files changed, 1 insertions, 0 deletions
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