Made struct defs more local in present dll

This commit is contained in:
kabiskac 2024-08-02 01:56:43 +02:00
parent 579e3dd2e2
commit 004925d41c
7 changed files with 131 additions and 132 deletions

View file

@ -10,13 +10,13 @@ typedef struct {
/* 0x00 */ OptionWindow *window;
/* 0x04 */ s32 quitTimer;
/* 0x08 */ s16 light;
} StateWork; // Size 0xC
} StateWork; /* size = 0x0C */
typedef struct {
Vec src;
Vec dest;
GXColor color;
} UnkLightDataStruct; // Size 0x1C TODO same as m446Dll::unkStruct10 and present::UnkPresentStruct3
/* 0x00 */ Vec src;
/* 0x0C */ Vec dest;
/* 0x18 */ GXColor color;
} UnkLightDataStruct; /* size = 0x1C */ // TODO same as m446Dll::unkStruct10 and present::UnkPresentStruct3
static void ExecState(omObjData *object);