diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2017-07-22 19:57:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-22 19:57:00 -0500 |
commit | 833f9026ff89c4bc7c9cf84b6c23d01e790e51e0 (patch) | |
tree | 595bc979ea25ffb98b9d1033f52662cab62acf4a /include/script.h | |
parent | 566392f441a66da41fc827b6d2e8cbeaf1cf4825 (diff) | |
parent | 275344c3de95471b93a6a417e2178d93688887a9 (diff) |
Merge pull request #385 from drifloony/mystery_event_script
finish decompiling mystery_event_script
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 b3d888edf..2a738698c 100644 --- a/include/script.h +++ b/include/script.h @@ -25,7 +25,7 @@ void InitScriptContext(struct ScriptContext *ctx, void *cmdTable, void *cmdTable u8 SetupBytecodeScript(struct ScriptContext *ctx, const u8 *ptr); void SetupNativeScript(struct ScriptContext *ctx, void *ptr); void StopScript(struct ScriptContext *ctx); -u8 RunScript(struct ScriptContext *ctx); +u8 RunScriptCommand(struct ScriptContext *ctx); u8 ScriptPush(struct ScriptContext *ctx, const u8 *ptr); const u8 *ScriptPop(struct ScriptContext *ctx); void ScriptJump(struct ScriptContext *ctx, u8 *ptr); |