mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-24 16:01:26 +00:00
Decompile a bunch of small files (#160)
* Decompile a bunch of small files * Rename dacrate to dacRate * Run format.sh * Minor fixes in PR #160
This commit is contained in:
parent
13b1dc03bb
commit
3d050f2861
54 changed files with 412 additions and 1029 deletions
|
@ -1,12 +1,10 @@
|
|||
#include <math.h>
|
||||
|
||||
float sqrtf(float f);
|
||||
#include <global.h>
|
||||
|
||||
#ifndef __GNUC__
|
||||
#pragma intrinsic(sqrtf)
|
||||
#define __builtin_sqrtf sqrtf
|
||||
#endif
|
||||
|
||||
float sqrtf(float f) {
|
||||
f32 sqrtf(f32 f) {
|
||||
return __builtin_sqrtf(f);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue