Explorar o código

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.
bunnei %!s(int64=5) %!d(string=hai) anos
pai
achega
8d755147d8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/core/hle/kernel/k_process.cpp

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