summaryrefslogtreecommitdiff
path: root/src/script.c
diff options
context:
space:
mode:
authorcamthesaxman <cameronghall@cox.net>2017-09-09 18:33:29 -0500
committercamthesaxman <cameronghall@cox.net>2017-09-09 18:33:29 -0500
commit66a148af9fea2a7029f5aae362e80b440686064e (patch)
treea171d88817ae2c079df672df08b9d94126b210da /src/script.c
parent95f856c39e81e2b723065e757b4dcf577441c558 (diff)
let's not mess around with typedefs now
Diffstat (limited to 'src/script.c')
-rw-r--r--src/script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script.c b/src/script.c
index 18abb6e84..394085d4a 100644
--- a/src/script.c
+++ b/src/script.c
@@ -40,7 +40,7 @@ u8 SetupBytecodeScript(struct ScriptContext *ctx, const u8 *ptr)
return 1;
}
-void SetupNativeScript(struct ScriptContext *ctx, NativeScriptFunc ptr)
+void SetupNativeScript(struct ScriptContext *ctx, bool8 (*ptr)(void))
{
ctx->mode = 2;
ctx->nativePtr = ptr;