summaryrefslogtreecommitdiff
path: root/src/object
diff options
context:
space:
mode:
authorTal Hayon <talhayon1@gmail.com>2022-01-30 00:28:48 +0200
committerTal Hayon <talhayon1@gmail.com>2022-01-30 00:28:48 +0200
commitbdb4aaef1782325ef555acd07fca71ec2e9c907c (patch)
tree94215cc621cd7563137c36f070df235771103cfa /src/object
parentfd9049f59801a77ced44d85329ee871fda031d22 (diff)
Decompile businessScrubPrologue
Diffstat (limited to 'src/object')
-rw-r--r--src/object/object6A.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/object/object6A.c b/src/object/object6A.c
index 29dcb2ef..5dfb115e 100644
--- a/src/object/object6A.c
+++ b/src/object/object6A.c
@@ -647,7 +647,7 @@ void sub_0809545C(Object6AEntity* this, ScriptExecutionContext* ctx) {
}
}
-void sub_080954AC(Object6AEntity* this) {
+void sub_080954AC(Object6AEntity* this, u32 arg2) {
Entity* e = CreateObject(OBJECT_6A, 0x1A, 0);
if (e != NULL) {
CopyPosition(super, e);
@@ -997,12 +997,12 @@ void sub_08095C00(Object6AEntity* this) {
}
}
-void sub_08095C48(Object6AEntity* this) {
+void sub_08095C48(Entity* this) {
Entity* e = CreateObject(OBJECT_6A, 0x19, 0);
if (e != NULL) {
- super->child = e;
- e->parent = super;
- CopyPosition(super, e);
+ this->child = e;
+ e->parent = this;
+ CopyPosition(this, e);
}
}