1
0
Fork 0
mirror of https://github.com/Lime3DS/Lime3DS synced 2025-01-09 13:43:27 +00:00

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: