summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHenny022p <info@henny022.de>2021-02-19 05:32:39 +0100
committerHenny022p <info@henny022.de>2021-02-19 05:32:39 +0100
commitb404b02bc2fffdef953935a33fb6f38098a23585 (patch)
treef21f2aa3ca5403199bbd216276eb7a998d31f794 /src
parent42f3e2e2fe788cf3f59d51089bc6036c5d3b816f (diff)
cleaned some usage of ExecuteScriptCommandSet
Diffstat (limited to 'src')
-rw-r--r--src/npc/festari.c1
-rw-r--r--src/object/houseDoorExterior.c4
2 files changed, 2 insertions, 3 deletions
diff --git a/src/npc/festari.c b/src/npc/festari.c
index 67637ec3..0c5c74f8 100644
--- a/src/npc/festari.c
+++ b/src/npc/festari.c
@@ -8,7 +8,6 @@ extern u32 sub_0801E99C(Entity*);
extern void sub_08078784(Entity*, u32);
extern void sub_0807DD50(Entity*);
extern void sub_0806F118(Entity*);
-extern void ExecuteScriptCommandSet(Entity*, void*);
extern void sub_0805FF2C(Entity*, void*);
extern void (*const gUnk_08109BBC[])(Entity*);
diff --git a/src/object/houseDoorExterior.c b/src/object/houseDoorExterior.c
index cdee3afe..170f6e33 100644
--- a/src/object/houseDoorExterior.c
+++ b/src/object/houseDoorExterior.c
@@ -116,7 +116,7 @@ static void sub_0808681C(Entity* this) {
}
if (this->flags & 0x2) {
- ExecuteScriptCommandSet(this, *(u32**)&this->cutsceneBeh);
+ ExecuteScriptCommandSet(this, *(ScriptExecutionContext **)&this->cutsceneBeh);
sub_080868EC(this, *(void**)&this->cutsceneBeh);
}
}
@@ -128,7 +128,7 @@ void sub_080868B0(Entity* this) {
this->boundingBox = &gUnk_081206AC;
this->actionDelay = 8;
}
- ExecuteScriptCommandSet(this, *(u32**)&this->cutsceneBeh);
+ ExecuteScriptCommandSet(this, *(ScriptExecutionContext **)&this->cutsceneBeh);
sub_080868EC(this, *(void**)&this->cutsceneBeh);
}