Skip to content

Commit 9f7650d

Browse files
authored
Fixed the RunMain (HaxeFoundation#1007)
the neko.vm.Thread is deprecated and it is not used anymore in the latest version of haxe thats why its better to have the sys version instead of the neko version Co-authored-by: jonnyboy <[email protected]>
1 parent 1cff66f commit 9f7650d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/run/RunMain.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class RunMain
3131
log(" neko build.n");
3232

3333
var gotUserResponse = false;
34-
neko.vm.Thread.create(function() {
34+
sys.thread.Thread.create(function() {
3535
Sys.sleep(30);
3636
if (!gotUserResponse)
3737
{

0 commit comments

Comments
 (0)