summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-08-28 18:07:45 -0400
committerGravatar bunnei2014-08-28 18:07:45 -0400
commit06864c93fdf41ed383aadc3a76c40cb4725051b0 (patch)
tree5b2f042cae820f5b8ad622731bc378247fac7788 /src/core/hle/kernel/thread.cpp
parentMerge pull request #81 from yuriks/downgrade-shader (diff)
parentLoader: Added support for loading raw BIN executables. (diff)
downloadyuzu-06864c93fdf41ed383aadc3a76c40cb4725051b0.tar.gz
yuzu-06864c93fdf41ed383aadc3a76c40cb4725051b0.tar.xz
yuzu-06864c93fdf41ed383aadc3a76c40cb4725051b0.zip
Merge pull request #80 from bunnei/fix-latest-libctru
Fixes Citra for the latest changes made to the "refactor" branch of libctru. - For reference, see: https://github.com/smealum/ctrulib/tree/refactor/libctru
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
-rw-r--r--src/core/hle/kernel/thread.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index 554ec9756..8bd9ca1a1 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -117,6 +117,11 @@ void ResetThread(Thread* t, u32 arg, s32 lowest_priority) {
117 t->context.sp = t->stack_top; 117 t->context.sp = t->stack_top;
118 t->context.cpsr = 0x1F; // Usermode 118 t->context.cpsr = 0x1F; // Usermode
119 119
120 // TODO(bunnei): This instructs the CPU core to start the execution as if it is "resuming" a
121 // thread. This is somewhat Sky-Eye specific, and should be re-architected in the future to be
122 // agnostic of the CPU core.
123 t->context.mode = 8;
124
120 if (t->current_priority < lowest_priority) { 125 if (t->current_priority < lowest_priority) {
121 t->current_priority = t->initial_priority; 126 t->current_priority = t->initial_priority;
122 } 127 }