diff options
author | camthesaxman <cameronghall@cox.net> | 2017-09-09 18:33:29 -0500 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2017-09-09 18:33:29 -0500 |
commit | 66a148af9fea2a7029f5aae362e80b440686064e (patch) | |
tree | a171d88817ae2c079df672df08b9d94126b210da /src/script.c | |
parent | 95f856c39e81e2b723065e757b4dcf577441c558 (diff) |
let's not mess around with typedefs now
Diffstat (limited to 'src/script.c')
-rw-r--r-- | src/script.c | 2 |
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; |