mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-06 16:04:35 +00:00
Fix misc 6 (#1148)
* Fix typo `vertexs` -> `vertices` * Fix typo `limbMatricies` -> `limbMatrices` * Fix some `gSPTextureRectangle` usage of fixed point constants * Run formatter * `ALIGN8` macro * `object_skj` cleanup * sholder -> shoulder * cleanup `stdbool.h` * Some function prototypes cleanup * Use macros in `osVirtualToPhysical`
This commit is contained in:
parent
c3533052ca
commit
a9526a3354
22 changed files with 128 additions and 130 deletions
|
@ -1004,7 +1004,7 @@ s32 Collider_DestroyLine(GlobalContext* globalCtx, OcLine* line) {
|
|||
* Sets up an OcLine with endpoints a and b.
|
||||
* OcLines are entirely unused.
|
||||
*/
|
||||
s32 Collider_SetLinePoints(GlobalContext* GlobalContext, OcLine* ocLine, Vec3f* a, Vec3f* b) {
|
||||
s32 Collider_SetLinePoints(GlobalContext* globalCtx, OcLine* ocLine, Vec3f* a, Vec3f* b) {
|
||||
Math_Vec3f_Copy(&ocLine->line.a, a);
|
||||
Math_Vec3f_Copy(&ocLine->line.b, b);
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue