diff options
author | bunnei <bunneidev@gmail.com> | 2021-07-02 15:04:08 -0700 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2021-07-20 18:54:56 -0700 |
commit | 8d755147d8fbe664d78b3e78514b64804505d6d7 (patch) | |
tree | d3715c3e72ba30347173f7ad575aadececeed3b3 /src | |
parent | 854c7a3c2826b769d9d41c79570c4dae57e0b3eb (diff) |
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.
Diffstat (limited to 'src')
-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."); } } |