diff options
| author | mzxrules <mzxrules@gmail.com> | 2025-02-16 15:33:55 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-16 15:33:55 -0500 |
| commit | 652478c338b0a9aa04f3d8f908a2c44a429e94f3 (patch) | |
| tree | b03a04eef32313d89fd56bc06775c27b071201f9 /src/code/z_map_mark.c | |
| parent | 137e178790051e2988f93c62bc0ed4811b403ea2 (diff) | |
Reduce overlay dependencies on global.h (7) (#2472)
* z64env_flags, z64quest_hint_commands
* z64cutscene_spline, z64save.h moved from z64.h
* bss
* pr suggestion
* bss
* suggestions
Diffstat (limited to 'src/code/z_map_mark.c')
| -rw-r--r-- | src/code/z_map_mark.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/code/z_map_mark.c b/src/code/z_map_mark.c index 4d0ab0411..72d245ce8 100644 --- a/src/code/z_map_mark.c +++ b/src/code/z_map_mark.c @@ -1,9 +1,16 @@ -#include "global.h" +#include "libu64/debug.h" +#include "romfile.h" +#include "segment_symbols.h" #include "terminal.h" #include "assets/textures/parameter_static/parameter_static.h" #if PLATFORM_N64 #include "n64dd.h" #endif +#include "z64map_mark.h" +#include "z64play.h" +#include "z64save.h" + +#include "global.h" typedef struct MapMarkInfo { /* 0x00 */ void* texture; |
