Thread state fix

This commit is contained in:
smallmodel 2023-10-27 20:41:47 +02:00
parent 24297bf396
commit 57e450a745
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512
2 changed files with 13 additions and 15 deletions

View file

@ -2012,7 +2012,7 @@ IsSuspended
*/
bool ScriptVM::IsSuspended(void)
{
return state == STATE_SUSPENDED;
return state == STATE_EXECUTION;
}
/*