diff options
| author | fullgrowngaming <42490167+fullgrowngaming@users.noreply.github.com> | 2020-10-11 16:30:22 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-11 18:30:22 -0500 |
| commit | f92773041808697bcdfd0a8f0743b0f863c66ee8 (patch) | |
| tree | d4b70af90da6da43a84a0efbfc0eb6644e405b75 /src/code | |
| parent | 1c4a3047dea5649ad703779cdc07854fc623260d (diff) | |
Arms_Hook OK (#33)
* All but 2 functions matched
* More work on hookshot
* hookshot work
* 2 functions left (and one is almost done)
* sp issues with draw, but matching otherwise
* hookshot matching
* Changed rodata inclusion for armshook
* Hookshot OK
* Resolve script conflicts
* Rename unk variables to match MM standard
* Made requested changes
Diffstat (limited to 'src/code')
| -rw-r--r-- | src/code/z_eff_footmark.c | 2 | ||||
| -rw-r--r-- | src/code/z_lib.c | 4 | ||||
| -rw-r--r-- | src/code/z_lights.c | 4 |
3 files changed, 0 insertions, 10 deletions
diff --git a/src/code/z_eff_footmark.c b/src/code/z_eff_footmark.c index bb7c83813..2405e39fd 100644 --- a/src/code/z_eff_footmark.c +++ b/src/code/z_eff_footmark.c @@ -1,7 +1,5 @@ #include <ultra64.h> #include <global.h> -extern float fabsf(float); -#pragma intrinsic (fabsf) void EffFootmark_Init(GlobalContext* ctxt) { EffFootmark* footmark; diff --git a/src/code/z_lib.c b/src/code/z_lib.c index f1e0051bb..09f75f2ce 100644 --- a/src/code/z_lib.c +++ b/src/code/z_lib.c @@ -1,10 +1,6 @@ #include <ultra64.h> #include <global.h> -#pragma intrinsic (sqrtf) -extern float fabsf(float); -#pragma intrinsic (fabsf) - void* Lib_bcopy(void* dest, void* src, size_t n) { _bcopy(src, dest, n); diff --git a/src/code/z_lights.c b/src/code/z_lights.c index 57bc3b0a8..1f3a52a94 100644 --- a/src/code/z_lights.c +++ b/src/code/z_lights.c @@ -1,10 +1,6 @@ #include <ultra64.h> #include <global.h> -#pragma intrinsic (sqrtf) -extern float fabsf(float); -#pragma intrinsic (fabsf) - void Lights_InitPositionalLight(LightInfoPositional* info, s16 posX, s16 posY, s16 posZ, u8 red, u8 green, u8 blue, s16 radius, u32 type) { info->type = type; info->params.posX = posX; |
