diff options
| author | mzxrules <mzxrules@gmail.com> | 2025-02-12 15:50:46 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-12 21:50:46 +0100 |
| commit | 494aecc9fcb258675aa2f92979d673049f67ac2f (patch) | |
| tree | 339e3df335f02f2a0e27eb1c97548060beacf1db /src/code/z_path.c | |
| parent | 1d2c912fbb3eb3363eaf56bd8e4c96203c99ceaa (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.c | 5 |
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; |
