diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2024-09-07 12:30:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-07 19:30:55 +0900 |
| commit | 62b30e2ebe285d78012c053a157068a4c55ab22b (patch) | |
| tree | 1618d412a2ea4eb0af4b8199668ee8fea23ffc36 /src/code | |
| parent | c54c1f2274fe762997ea13cf2b4a758f27db35e3 (diff) | |
Move `Graph_Alloc` and open/close Disps to `gfx.h` (#1976)
* move graph_alloc and open/close Disps to gfx.h
* zcolchk bss reeeeeee
* fix matching gc-eu-mq (bss)
* remove __gfxCtx extern
* revert makefile -Werror=implicit-function-declaration
* bss
Diffstat (limited to 'src/code')
| -rw-r--r-- | src/code/sys_math3d.c | 2 | ||||
| -rw-r--r-- | src/code/z_collision_check.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/code/sys_math3d.c b/src/code/sys_math3d.c index 38fb38312..570da1ab0 100644 --- a/src/code/sys_math3d.c +++ b/src/code/sys_math3d.c @@ -5,7 +5,7 @@ #include "macros.h" #include "sys_math3d.h" -#pragma increment_block_number "gc-eu:103 gc-eu-mq:103 gc-jp:103 gc-jp-ce:103 gc-jp-mq:103 gc-us:103 gc-us-mq:103" +#pragma increment_block_number "gc-eu:106 gc-eu-mq:106 gc-jp:106 gc-jp-ce:106 gc-jp-mq:106 gc-us:106 gc-us-mq:106" s32 Math3D_LineVsLineClosestTwoPoints(Vec3f* lineAPointA, Vec3f* lineAPointB, Vec3f* lineBPointA, Vec3f* lineBPointB, Vec3f* lineAClosestToB, Vec3f* lineBClosestToA); diff --git a/src/code/z_collision_check.c b/src/code/z_collision_check.c index f584641b6..2c0b19d3e 100644 --- a/src/code/z_collision_check.c +++ b/src/code/z_collision_check.c @@ -2317,7 +2317,6 @@ void CollisionCheck_ATQuadVsACCyl(PlayState* play, CollisionCheckContext* colChk #if OOT_DEBUG static s8 sBssDummy3; static s8 sBssDummy4; -static s8 sBssDummy5; #endif void CollisionCheck_ATTrisVsACTris(PlayState* play, CollisionCheckContext* colChkCtx, Collider* atCol, |
