diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-04-15 06:59:15 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-04-15 06:59:19 -0400 |
| commit | e3566e6c1d7991944b0d17b511020e19cae402ac (patch) | |
| tree | 9d4d4ed0c35d64839a31ce9974717fb308639687 /src/core/hle/kernel/thread.cpp | |
| parent | 1f4dfb3998fc1ef91132a79bd3a5153a56e03eca (diff) | |
kernel/thread: Remove BoostPriority()
This is a holdover from Citra that currently remains unused, so it can
be removed from the Thread interface.
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 1b891f632..ca52267b2 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp @@ -220,11 +220,6 @@ void Thread::SetPriority(u32 priority) { UpdatePriority(); } -void Thread::BoostPriority(u32 priority) { - scheduler->SetThreadPriority(this, priority); - current_priority = priority; -} - void Thread::SetWaitSynchronizationResult(ResultCode result) { context.cpu_registers[0] = result.raw; } |
