summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2020-07-16 20:16:57 +0200
committerGitHub <noreply@github.com>2020-07-16 20:16:57 +0200
commitd84d9a64b36013e2745f019f0b6f422f8ed1fd32 (patch)
tree4e43bcb0312811d74b78ed23014d96e4149b3f1c /src/core/hle/kernel/thread.cpp
parentMerge pull request #4261 from ameerj/gc-calibration (diff)
parentkernel: Add missing include (diff)
downloadyuzu-d84d9a64b36013e2745f019f0b6f422f8ed1fd32.tar
yuzu-d84d9a64b36013e2745f019f0b6f422f8ed1fd32.tar.gz
yuzu-d84d9a64b36013e2745f019f0b6f422f8ed1fd32.tar.bz2
yuzu-d84d9a64b36013e2745f019f0b6f422f8ed1fd32.tar.lz
yuzu-d84d9a64b36013e2745f019f0b6f422f8ed1fd32.tar.xz
yuzu-d84d9a64b36013e2745f019f0b6f422f8ed1fd32.tar.zst
yuzu-d84d9a64b36013e2745f019f0b6f422f8ed1fd32.zip
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
-rw-r--r--src/core/hle/kernel/thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index 67148fa6d..d132aba34 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -155,7 +155,7 @@ ResultVal<std::shared_ptr<Thread>> Thread::Create(Core::System& system, ThreadTy
std::string name, VAddr entry_point, u32 priority,
u64 arg, s32 processor_id, VAddr stack_top,
Process* owner_process) {
- std::function<void(void*)> init_func = system.GetCpuManager().GetGuestThreadStartFunc();
+ std::function<void(void*)> init_func = Core::CpuManager::GetGuestThreadStartFunc();
void* init_func_parameter = system.GetCpuManager().GetStartFuncParamater();
return Create(system, type_flags, name, entry_point, priority, arg, processor_id, stack_top,
owner_process, std::move(init_func), init_func_parameter);