blob: a0c5818364b4d641aac734f1ac14791b7876a791 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned long u32;
typedef signed char s8;
typedef signed short s16;
typedef signed long s32;
struct Unk2106FA0 {
u8 filler0[0x8];
s32 unk8;
s32 unkC;
s32 unk10;
s32 unk14;
};
extern struct Unk2106FA0 gUnknown2106FA0;
void sub_02000DF4(void)
{
gUnknown2106FA0.unk8 = -1;
gUnknown2106FA0.unkC = 0;
gUnknown2106FA0.unk10 = -1;
gUnknown2106FA0.unk14 = 0;
}
|