Remove nonexistent function calls.

Earlier Haxe versions just used `EntryPoint`.
This commit is contained in:
Joseph Cloutier
2022-05-31 02:31:59 -04:00
parent 312dd70d72
commit 894445687e

View File

@@ -601,12 +601,8 @@ class NativeApplication
}
}
#if target.threaded
#if (haxe_ver > "4.1.5" && target.threaded)
sys.thread.Thread.current().events.progress();
#elseif cpp
cpp.vm.Thread.current().events.progress();
#elseif neko
neko.vm.Thread.current().events.progress();
#else
@:privateAccess haxe.EntryPoint.processEvents();
#end