Decompile func0f15da00

This commit is contained in:
Ryan Dwyer
2022-04-24 22:55:54 +10:00
parent ecb7c43544
commit dab2ea5fb7
4 changed files with 44 additions and 63 deletions
+2 -2
View File
@@ -51,8 +51,8 @@ bool roomIsVisibleByPlayer(s32 room, u32 playernum);
bool roomIsVisibleByAibot(s32 room, u32 aibotindex);
s32 portalFindNumByVertices(struct portalvertices *pvertices);
u32 bgInflate(u8 *src, u8 *dst, u32 len);
Gfx *func0f15da00(struct roomgfxdata18 *arg0, u32 arg1, Gfx *arg2);
Gfx *room0f15dab4(s32 roomnum, u32 arg1, u32 arg2);
Gfx *func0f15da00(struct roomgfxdata18 *arg0, Gfx *arg1, Gfx *arg2);
Gfx *room0f15dab4(s32 roomnum, Gfx *arg1, u32 arg2);
struct gfxvtx *room0f15dbb4(s32 roomnum, Gfx *gdl);
void roomLoad(s32 roomnum);
void roomUnload(s32 room);
+5 -2
View File
@@ -3652,9 +3652,12 @@ struct screenbox {
};
struct roomgfxdata18 {
u8 unk00;
u8 type;
struct roomgfxdata18 *next;
Gfx *gdl;
union {
Gfx *gdl; // type 0
struct roomgfxdata18 *child; // type 1
};
struct gfxvtx *vertices;
u32 *colours;
};