diff options
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 6ab31c70b..7b5169cfc 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -57,7 +57,7 @@ public: | |||
| 57 | * @param stack_top The address of the thread's stack top | 57 | * @param stack_top The address of the thread's stack top |
| 58 | * @return A shared pointer to the newly created thread | 58 | * @return A shared pointer to the newly created thread |
| 59 | */ | 59 | */ |
| 60 | static ResultVal<SharedPtr<Thread>> Create(std::string name, VAddr entry_point, s32 priority, | 60 | static ResultVal<SharedPtr<Thread>> Create(std::string name, VAddr entry_point, u32 priority, |
| 61 | u32 arg, s32 processor_id, VAddr stack_top); | 61 | u32 arg, s32 processor_id, VAddr stack_top); |
| 62 | 62 | ||
| 63 | std::string GetName() const override { | 63 | std::string GetName() const override { |