diff options
author | bunnei <bunneidev@gmail.com> | 2015-02-01 06:28:29 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-02-01 06:28:29 +0100 |
commit | a4b1e8ce5239793814a19905ef912c10d3869e49 (patch) | |
tree | c80ea3a4035a20810fb5914f3bfc99f392376939 /src/core/hle | |
parent | Merge pull request #522 from lioncash/adios (diff) | |
parent | arm: Clean up ARMul_State (diff) | |
download | yuzu-a4b1e8ce5239793814a19905ef912c10d3869e49.tar yuzu-a4b1e8ce5239793814a19905ef912c10d3869e49.tar.gz yuzu-a4b1e8ce5239793814a19905ef912c10d3869e49.tar.bz2 yuzu-a4b1e8ce5239793814a19905ef912c10d3869e49.tar.lz yuzu-a4b1e8ce5239793814a19905ef912c10d3869e49.tar.xz yuzu-a4b1e8ce5239793814a19905ef912c10d3869e49.tar.zst yuzu-a4b1e8ce5239793814a19905ef912c10d3869e49.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/kernel/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 03b492c75..56950ebd4 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp @@ -50,7 +50,7 @@ static void ResetThread(Thread* t, u32 arg, s32 lowest_priority) { memset(&t->context, 0, sizeof(Core::ThreadContext)); t->context.cpu_registers[0] = arg; - t->context.pc = t->context.reg_15 = t->entry_point; + t->context.pc = t->entry_point; t->context.sp = t->stack_top; t->context.cpsr = 0x1F; // Usermode |