diff options
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/kernel/thread.cpp | 3 | ||||
-rw-r--r-- | src/core/hle/kernel/thread.h | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index b20092761..1588cfc7e 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp @@ -502,7 +502,8 @@ SharedPtr<Thread> SetupMainThread(VAddr entry_point, u32 priority, SharedPtr<Thread> thread = std::move(thread_res).Unwrap(); // Register 1 must be a handle to the main thread - thread->context.cpu_registers[1] = Kernel::g_handle_table.Create(thread).Unwrap(); + thread->guest_handle = Kernel::g_handle_table.Create(thread).Unwrap();; + thread->context.cpu_registers[1] = thread->guest_handle; thread->context.fpscr = FPSCR_DEFAULT_NAN | FPSCR_FLUSH_TO_ZERO | FPSCR_ROUND_TOZERO | FPSCR_IXC; // 0x03C00010 diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 25d678ba3..ed44ee933 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h @@ -212,6 +212,9 @@ public: std::string name; + /// Handle used by guest emulated application to access this thread + Handle guest_handle; + /// Handle used as userdata to reference this object when inserting into the CoreTiming queue. Handle callback_handle; |