From 7ff0cd70adb2ce300b6d675188e4df01ad85797b Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 28 Nov 2018 17:33:37 +0100 Subject: [PATCH] - explicitly declare the constructor and destructor methods of FCheckPosition so that they get a working prototype. --- wadsrc/static/zscript/actor.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wadsrc/static/zscript/actor.txt b/wadsrc/static/zscript/actor.txt index 552500ad4..56ca3051d 100644 --- a/wadsrc/static/zscript/actor.txt +++ b/wadsrc/static/zscript/actor.txt @@ -26,6 +26,10 @@ struct FCheckPosition native int PushTime; + // These are internal helpers to properly initialize an object of this type. + private native void _Constructor(); + private native void _Destructor(); + native void ClearLastRipped(); }