mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-08 07:20:16 +00:00
Remove inline THIS-> from actors (#538)
* Darkmeiro decompilation Bg_Gnd_Darkmeiro decompiled, matched, and documented. * give this a shot * fix conflict * one more try * could be useful * whoops * ZAP2 stuff * ZAP why * ZAP again * THIS * PLAYER
This commit is contained in:
parent
6e78efd0c5
commit
0376242365
12 changed files with 93 additions and 70 deletions
|
@ -145,8 +145,11 @@ void ObjComb_Init(Actor* thisx, GlobalContext* globalCtx) {
|
|||
ObjComb_SetupWait(this);
|
||||
}
|
||||
|
||||
void ObjComb_Destroy(Actor* thisx, GlobalContext* globalCtx) {
|
||||
Collider_DestroyJntSph(globalCtx, &THIS->collider);
|
||||
void ObjComb_Destroy(Actor* thisx, GlobalContext* globalCtx2) {
|
||||
GlobalContext* globalCtx = globalCtx2;
|
||||
ObjComb* this = THIS;
|
||||
|
||||
Collider_DestroyJntSph(globalCtx, &this->collider);
|
||||
}
|
||||
|
||||
void ObjComb_SetupWait(ObjComb* this) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue