diff options
author | who-knows-who <j.williams97@outlook.com> | 2021-02-27 17:57:20 +0000 |
---|---|---|
committer | who-knows-who <j.williams97@outlook.com> | 2021-02-27 18:05:20 +0000 |
commit | 50eafa9b79d992f409a688fc7c8fb1029020130a (patch) | |
tree | 3da688f83fbe960c7314879a6b1d95ae4b6d7203 /arm9/src/unk_0201CBEC.c | |
parent | f2284a721b91fc2af49bd2b5d1d43ff24de46ba6 (diff) |
Move struct and function definitions to header files
Diffstat (limited to 'arm9/src/unk_0201CBEC.c')
-rw-r--r-- | arm9/src/unk_0201CBEC.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arm9/src/unk_0201CBEC.c b/arm9/src/unk_0201CBEC.c index 0e75c3ff..7ec46f83 100644 --- a/arm9/src/unk_0201CBEC.c +++ b/arm9/src/unk_0201CBEC.c @@ -1,7 +1,6 @@ #include "global.h" #include "fx.h" - -int FUN_0201CBEC(int a0, int a1, int a2, int a3); +#include "unk_0201CBEC.h" THUMB_FUNC int FUN_0201CBEC(int a0, int a1, int a2, int a3) { @@ -9,4 +8,4 @@ THUMB_FUNC int FUN_0201CBEC(int a0, int a1, int a2, int a3) { int r2 = a1 - a3; return FX_Sqrt((r0 * r0 + r2 * r2) << 0xc) >> 0xc; -}
\ No newline at end of file +} |