Add missing type declaration.

Nowadays you're supposed to omit this type declaration, but what I didn't realize is that that feature was added in Haxe 4.1. Since Lime still needs to support earlier versions, we'll just have to do it the old way.
This commit is contained in:
player-03
2023-04-01 11:29:35 -04:00
committed by GitHub
parent 77f3d4bacf
commit 776db44e37

View File

@@ -285,7 +285,7 @@ class CFFI
{
init = load("lime", "neko_init", 5);
}
catch (e)
catch (e:Dynamic)
{
}