Skip to content

Commit

Permalink
Fix missing function call.
Browse files Browse the repository at this point in the history
  • Loading branch information
player-03 committed Dec 31, 2024
1 parent f1c24da commit 98c34f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lime/system/WorkOutput.hx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class WorkOutput
if (!__jobComplete.value)
{
#if (lime_threads && html5)
if (Thread.current.isWorker())
if (Thread.current().isWorker())
{
Thread.returnMessage({event: PROGRESS, message: message, jobID: activeJob.id}, transferList);
}
Expand Down

0 comments on commit 98c34f4

Please sign in to comment.