summaryrefslogtreecommitdiff
path: root/src/object/lightDoor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/object/lightDoor.c')
-rw-r--r--src/object/lightDoor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/object/lightDoor.c b/src/object/lightDoor.c
index 3bb41e19..ebce1433 100644
--- a/src/object/lightDoor.c
+++ b/src/object/lightDoor.c
@@ -12,7 +12,7 @@
typedef struct {
/*0x00*/ Entity base;
/*0x68*/ u8 unk_68[30];
- /*0x86*/ u16 unk_86;
+ /*0x86*/ u16 flag;
} LightDoorEntity;
void LightDoor_Init(LightDoorEntity*);
@@ -31,7 +31,7 @@ void LightDoor(LightDoorEntity* this) {
void LightDoor_Init(LightDoorEntity* this) {
if (super->type == 0) {
- if (CheckFlags(this->unk_86)) {
+ if (CheckFlags(this->flag)) {
DeleteThisEntity();
}
super->action = 1;