1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-05 05:40:19 +00:00

z_demo_gt.c, 2/112 non matching (#480)

* Z_demo_gt.c

* More progress

* More progress

* Some more progress

* Mooore progress

* Removes unused asm

* Additional progress

* More progress

* 36 remaining

* More progress??

* 19 remaining

* some progress?

* First draw function decompiled

* func_80981694

* func_8097F508

* func_8097FF9C

* WIP

* func_80981E84

* func_80982244

* func_80981AA0 cannot believe it matched

* func_8097D7D8

* Rand functions matched

* Changes after rebase of GFX macros

* func_8097F280

* func_8097FDDC

* func_8097E824 some more progress, 2 left

* Removes unused ASM

* Cleanup / Function renaming

* More cleanup / Renaming

* review

* review

* format

Co-authored-by: i82orbom <i82orbom i82orbom@github>
Co-authored-by: fig <fig02srl@gmail.com>
This commit is contained in:
i82orbom 2020-12-05 22:19:48 +01:00 committed by GitHub
parent 994bf19a97
commit 2ca9c78838
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
118 changed files with 1819 additions and 5637 deletions

File diff suppressed because it is too large Load diff

View file

@ -6,9 +6,19 @@
struct DemoGt;
typedef void (*DemoGtUpdateFunc)(struct DemoGt*, GlobalContext*);
typedef void (*DemoGtDrawFunc)(struct DemoGt*, GlobalContext*);
typedef struct DemoGt {
/* 0x0000 */ Actor actor;
/* 0x014C */ char unk_14C[0x5C];
/* 0x0000 */ DynaPolyActor dyna;
/* 0x0164 */ s32 updateMode;
/* 0x0168 */ s32 drawConfig;
/* 0x016C */ Vec3s unk_16C;
/* 0x0172 */ s16 unk_172;
/* 0x0174 */ s16 unk_174;
/* 0x0178 */ s32 unk_178[4];
/* 0x0188 */ s32 unk_188[4];
/* 0x0198 */ s32 unk_198[4];
} DemoGt; // size = 0x01A8
extern const ActorInit Demo_Gt_InitVars;