2/3rds m412, fix previous headers
This commit is contained in:
parent
ebef402160
commit
88aa365b97
10 changed files with 1767 additions and 498 deletions
1305
src/REL/m412Dll/main.c
Normal file
1305
src/REL/m412Dll/main.c
Normal file
File diff suppressed because it is too large
Load diff
7
src/libhu/setvf.c
Normal file
7
src/libhu/setvf.c
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#include "dolphin.h"
|
||||
|
||||
void HuSetVecF(Vec* arg0, f32 arg8, f32 arg9, f32 argA) {
|
||||
arg0->x = arg8;
|
||||
arg0->y = arg9;
|
||||
arg0->z = argA;
|
||||
}
|
||||
7
src/libhu/subvf.c
Normal file
7
src/libhu/subvf.c
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#include "dolphin.h"
|
||||
|
||||
void HuSubVecF(Vec* out, Vec* in, Vec* sub) {
|
||||
out->x = in->x - sub->x;
|
||||
out->y = in->y - sub->y;
|
||||
out->z = in->z - sub->z;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue