Decompile manager13

This commit is contained in:
octorock
2021-09-18 12:26:19 +02:00
parent 7a70c65680
commit 1b122a05b6
5 changed files with 95 additions and 164 deletions
+6 -4
View File
@@ -3,14 +3,16 @@
extern u32 CheckRectOnScreen(s16, s16, u32, u32);
/*
This object is created by Manager13.
It checks whether the 0x10 x 0x10 rect at field_0x80, field_0x82 is still on the screen.
If not, then it deletes itselfs and unsets the this->type2 bit in the managers field_0x20 bitfield.
*/
void Object1C(Entity* this) {
s32 iVar1;
if (this->action == 0) {
this->action = 1;
}
iVar1 = CheckRectOnScreen(this->field_0x80.HWORD, this->field_0x82.HWORD, 0x10, 0x10);
if (iVar1 == 0) {
if (CheckRectOnScreen(this->field_0x80.HWORD, this->field_0x82.HWORD, 0x10, 0x10) == 0) {
this->parent->field_0x20 &= ~(1 << this->type2);
DeleteThisEntity();
}