summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2021-07-02 15:04:08 -0700
committerGravatar bunnei2021-07-20 18:54:56 -0700
commit8d755147d8fbe664d78b3e78514b64804505d6d7 (patch)
treed3715c3e72ba30347173f7ad575aadececeed3b3
parenthle: kernel: Ensure current running process is closed. (diff)
downloadyuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar.gz
yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.tar.xz
yuzu-8d755147d8fbe664d78b3e78514b64804505d6d7.zip
hle: kernel: KProcess: Change process termination assert to a warning.
- Since we do not implement multiprocess right now, this should not be a crashing assert.
-rw-r--r--src/core/hle/kernel/k_process.cpp2
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() {
165 ASSERT(num_threads > 0); 165 ASSERT(num_threads > 0);
166 166
167 if (const auto count = --num_threads; count == 0) { 167 if (const auto count = --num_threads; count == 0) {
168 UNIMPLEMENTED_MSG("Process termination is not implemented!"); 168 LOG_WARNING(Kernel, "Process termination is not fully implemented.");
169 } 169 }
170} 170}
171 171