summaryrefslogtreecommitdiff
path: root/src/code/z_path.c
diff options
context:
space:
mode:
authormzxrules <mzxrules@gmail.com>2025-02-12 15:50:46 -0500
committerGitHub <noreply@github.com>2025-02-12 21:50:46 +0100
commit494aecc9fcb258675aa2f92979d673049f67ac2f (patch)
tree339e3df335f02f2a0e27eb1c97548060beacf1db /src/code/z_path.c
parent1d2c912fbb3eb3363eaf56bd8e4c96203c99ceaa (diff)
Reduce overlay dependencies on global.h (5) (#2466)
* remove global.h dependency from all actors * fix compiler error * fix another build issue * fix bss
Diffstat (limited to 'src/code/z_path.c')
-rw-r--r--src/code/z_path.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/code/z_path.c b/src/code/z_path.c
index d27530eb3..7afe07aab 100644
--- a/src/code/z_path.c
+++ b/src/code/z_path.c
@@ -1,4 +1,7 @@
-#include "global.h"
+#include "ultra64.h"
+#include "libc64/math64.h"
+#include "segmented_address.h"
+#include "z64play.h"
Path* Path_GetByIndex(PlayState* play, s16 index, s16 max) {
Path* path;