diff options
| author | Prakxo <87568477+Prakxo@users.noreply.github.com> | 2023-12-04 18:54:21 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-04 10:54:21 -0700 |
| commit | 2de3373647fb4d0cc14ec6a485dac3aec5c0f561 (patch) | |
| tree | dd996fa1c1b0f3c066b4c02177f96bae025e98db /include | |
| parent | 18b20e709c278f791f137518e0262ffd104e1243 (diff) | |
ac_train_door OK (#122)
* ac_train_door OK
* review
Diffstat (limited to 'include')
| -rw-r--r-- | include/6F5550.h | 3 | ||||
| -rw-r--r-- | include/gfx.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/6F5550.h b/include/6F5550.h index ef3dcc5..b8476d6 100644 --- a/include/6F5550.h +++ b/include/6F5550.h @@ -5,6 +5,7 @@ struct Game_Play; struct Game_Play_Unk_1EE8; +struct xyz_t; // void func_800D18B0_jp(); // void func_800D195C_jp(); @@ -30,7 +31,7 @@ struct Game_Play_Unk_1EE8; // void func_800D1CB8_jp(); // void func_800D1CE0_jp(); // void func_800D1D08_jp(); -// void func_800D1D58_jp(); +void sAdo_OngenTrgStart(u16 arg0, xyz_t* arg1); // void func_800D1D94_jp(); void sAdo_SetVoiceMode(s32 arg0); // void func_800D1DE4_jp(); diff --git a/include/gfx.h b/include/gfx.h index f92a104..3ab54a0 100644 --- a/include/gfx.h +++ b/include/gfx.h @@ -8,6 +8,7 @@ #include "unk.h" #define GRAPH_ALLOC(gfxCtx, size) ((void*)((gfxCtx)->polyOpa.d = (Gfx*)((u8*)(gfxCtx)->polyOpa.d - ALIGN16(size)))) +#define GRAPH_ALLOC_NO_ALIGN(gfxCtx,size) ((void*)((gfxCtx)->polyOpa.d = (Gfx*)((u8*)(gfxCtx)->polyOpa.d - size))) typedef struct GraphicsContext { /* 0x000 */ UNK_TYPE1 unk_000[0x8]; |
