diff options
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/kernel/k_thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_thread.cpp b/src/core/hle/kernel/k_thread.cpp index fbab5ecb7..f798dfd59 100644 --- a/src/core/hle/kernel/k_thread.cpp +++ b/src/core/hle/kernel/k_thread.cpp | |||
| @@ -981,7 +981,7 @@ void KThread::Exit() { | |||
| 981 | 981 | ||
| 982 | // Release the thread resource hint from parent. | 982 | // Release the thread resource hint from parent. |
| 983 | if (parent != nullptr) { | 983 | if (parent != nullptr) { |
| 984 | // TODO(bunnei): Hint that the resource is about to be released. | 984 | parent->GetResourceLimit()->Release(Kernel::LimitableResource::Threads, 0, 1); |
| 985 | resource_limit_release_hint = true; | 985 | resource_limit_release_hint = true; |
| 986 | } | 986 | } |
| 987 | 987 | ||