summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-21 03:09:57 +0200
committerLioncash <mathew1800@gmail.com>2018-09-21 03:10:00 +0200
commit05aa4aa01a0f9b9e3a5a0ea47b0d5719befce9b4 (patch)
tree51d0560e5b690aa36554232f138bdac154865af7 /src/core/hle/kernel/process.cpp
parentMerge pull request #1370 from Hedges/GDBClean (diff)
downloadyuzu-05aa4aa01a0f9b9e3a5a0ea47b0d5719befce9b4.tar
yuzu-05aa4aa01a0f9b9e3a5a0ea47b0d5719befce9b4.tar.gz
yuzu-05aa4aa01a0f9b9e3a5a0ea47b0d5719befce9b4.tar.bz2
yuzu-05aa4aa01a0f9b9e3a5a0ea47b0d5719befce9b4.tar.lz
yuzu-05aa4aa01a0f9b9e3a5a0ea47b0d5719befce9b4.tar.xz
yuzu-05aa4aa01a0f9b9e3a5a0ea47b0d5719befce9b4.tar.zst
yuzu-05aa4aa01a0f9b9e3a5a0ea47b0d5719befce9b4.zip
Diffstat (limited to 'src/core/hle/kernel/process.cpp')
-rw-r--r--src/core/hle/kernel/process.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp
index 7a272d031..914bbe0a1 100644
--- a/src/core/hle/kernel/process.cpp
+++ b/src/core/hle/kernel/process.cpp
@@ -125,7 +125,7 @@ void Process::Run(VAddr entry_point, s32 main_thread_priority, u32 stack_size) {
vm_manager.LogLayout();
status = ProcessStatus::Running;
- Kernel::SetupMainThread(kernel, entry_point, main_thread_priority, this);
+ Kernel::SetupMainThread(kernel, entry_point, main_thread_priority, *this);
}
void Process::LoadModule(SharedPtr<CodeSet> module_, VAddr base_addr) {