Warnings/Thread: Added missing case for the Dormant thread status in ResumeFromWait.

This commit is contained in:
Subv 2020-04-10 18:42:57 -05:00
parent 47417e762b
commit 0e88940df1

View file

@ -194,6 +194,7 @@ void Thread::ResumeFromWait() {
case ThreadStatus::WaitArb:
case ThreadStatus::WaitSleep:
case ThreadStatus::WaitIPC:
case ThreadStatus::Dormant:
break;
case ThreadStatus::Ready: