diff options
author | bunnei <bunneidev@gmail.com> | 2021-07-03 00:04:08 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2021-07-21 03:54:56 +0200 |
commit | 8d755147d8fbe664d78b3e78514b64804505d6d7 (patch) | |
tree | d3715c3e72ba30347173f7ad575aadececeed3b3 /src/core/hle | |
parent | hle: kernel: Ensure current running process is closed. (diff) | |
download | yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar.gz yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar.bz2 yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar.lz yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar.xz yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar.zst yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/kernel/k_process.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_process.cpp b/src/core/hle/kernel/k_process.cpp index 87171b1c8..8ead1a769 100644 --- a/src/core/hle/kernel/k_process.cpp +++ b/src/core/hle/kernel/k_process.cpp @@ -165,7 +165,7 @@ void KProcess::DecrementThreadCount() { ASSERT(num_threads > 0); if (const auto count = --num_threads; count == 0) { - UNIMPLEMENTED_MSG("Process termination is not implemented!"); + LOG_WARNING(Kernel, "Process termination is not fully implemented."); } } |