mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
PR fix
This commit is contained in:
parent
ea3f70cd68
commit
82b1555295
1 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ static void BgHakaMegane_Destroy(BgHakaMegane* this, GlobalContext* globalCtx);
|
|||
static void BgHakaMegane_Update(BgHakaMegane* this, GlobalContext* globalCtx);
|
||||
|
||||
static void func_8087DB24(BgHakaMegane* this, GlobalContext* globalCtx);
|
||||
static void func_8087DBF0(BgHakaMegane* this, GlobalContext* globalCtx);
|
||||
void func_8087DBF0(BgHakaMegane* this, GlobalContext* globalCtx);
|
||||
static void func_8087DC64(BgHakaMegane* this, GlobalContext* globalCtx);
|
||||
static void func_8087DC94(BgHakaMegane* this, GlobalContext* globalCtx);
|
||||
|
||||
|
@ -92,13 +92,13 @@ static void func_8087DB24(BgHakaMegane* this, GlobalContext* globalCtx) {
|
|||
}
|
||||
}
|
||||
|
||||
static void func_8087DBF0(BgHakaMegane* this, GlobalContext* globalCtx) {
|
||||
void func_8087DBF0(BgHakaMegane* this, GlobalContext* globalCtx) {
|
||||
Actor* thisx = &this->dyna.actor;
|
||||
if (globalCtx->actorCtx.unk_03 != 0) {
|
||||
thisx->flags |= 0x80;
|
||||
func_8003EBF8(globalCtx, &globalCtx->colCtx.dyna, this->dyna.dynaPolyId);
|
||||
} else {
|
||||
thisx->flags &= -0x81;
|
||||
thisx->flags &= ~0x80;
|
||||
func_8003EC50(globalCtx, &globalCtx->colCtx.dyna, this->dyna.dynaPolyId);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue