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.
This commit is contained in:
bunnei 2021-07-02 15:04:08 -07:00
parent 81d111fd1b
commit 179243473b

View file

@ -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.");
}
}