diff options
| author | Henny022p <info@henny022.de> | 2021-02-19 06:33:34 +0100 |
|---|---|---|
| committer | Henny022p <info@henny022.de> | 2021-02-19 06:33:34 +0100 |
| commit | 126feb121ff4409668f51a4a089fc87c25bb545c (patch) | |
| tree | 69b5fe5ac9aca1a456928fef23c6b20554c8bb29 /include/script.h | |
| parent | aaea9b89f6916be97e39920a57ad589e9a412a6b (diff) | |
improved signature of StartPlayerScript
Diffstat (limited to 'include/script.h')
| -rw-r--r-- | include/script.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/script.h b/include/script.h index 73d860e1..a3f29c84 100644 --- a/include/script.h +++ b/include/script.h @@ -4,17 +4,17 @@ #include "global.h" typedef struct { - u16 * unk_00; + u16* unk_00; u32 unk_04; u32 unk_08; - u8 unk_0C[0x4];//unused + u8 unk_0C[0x4]; // unused u16 unk_10; u16 unk_12; u32 unk_14; u8 unk_18; u8 unk_19; u8 unk_1A; - u8 unk_1B;//unused + u8 unk_1B; // unused union SplitWord unk_1C; union SplitWord unk_20; } ScriptExecutionContext; @@ -26,7 +26,7 @@ extern u32 GetNextScriptCommandWord(u16*); extern u32 GetNextScriptCommandWordAfterCommandMetadata(u16*); extern u32 GetNextScriptCommandHalfwordAfterCommandMetadata(u16*); -extern void StartPlayerScript(u32); +extern void StartPlayerScript(u16*); extern void sub_0807DEDC(Entity*, ScriptExecutionContext*, u32, u32); |
