diff options
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 60b7bea70..5fb95dada 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -384,9 +384,9 @@ std::tuple<u32, u32, bool> GetFreeThreadLocalSlot(std::vector<std::bitset<8>>& t | |||
| 384 | * @param entry_point Address of entry point for execution | 384 | * @param entry_point Address of entry point for execution |
| 385 | * @param arg User argument for thread | 385 | * @param arg User argument for thread |
| 386 | */ | 386 | */ |
| 387 | static void ResetThreadContext(Core::ThreadContext& context, u32 stack_top, u32 entry_point, | 387 | static void ResetThreadContext(ARM_Interface::ThreadContext& context, u32 stack_top, |
| 388 | u32 arg) { | 388 | u32 entry_point, u32 arg) { |
| 389 | memset(&context, 0, sizeof(Core::ThreadContext)); | 389 | memset(&context, 0, sizeof(ARM_Interface::ThreadContext)); |
| 390 | 390 | ||
| 391 | context.cpu_registers[0] = arg; | 391 | context.cpu_registers[0] = arg; |
| 392 | context.pc = entry_point; | 392 | context.pc = entry_point; |