diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2020-04-21 12:03:53 -0400 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2020-04-21 12:03:53 -0400 |
commit | fb6be2fb9463b1542e4cc839627b2d2d1bb0afbe (patch) | |
tree | 688a47e1494fbe1cbf9902213e79a1676f09b0d9 /include/script.h | |
parent | 33fffa10388ab9e2dbb2cb72f7582ece807599ba (diff) |
fix various issues and NONMATCHING. Thanks Demki!
Diffstat (limited to 'include/script.h')
-rw-r--r-- | include/script.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/script.h b/include/script.h index 13035fc9..2ecc8e28 100644 --- a/include/script.h +++ b/include/script.h @@ -11,7 +11,7 @@ struct ScriptContext u8 stackDepth;
u8 mode;
u8 comparisonResult;
- u8 (*nativePtr)(void);
+ u8 (*nativePtr)(struct ScriptContext *);
const u8 *scriptPtr;
const u8 *stack[20];
ScrCmdFunc *cmdTable;
|