diff options
| author | mzxrules <mzxrules@gmail.com> | 2025-02-26 17:18:30 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-26 17:18:30 -0500 |
| commit | cf1a39c26fca0f7827fef79d08b114fde1c43cce (patch) | |
| tree | ccbebda2637107cf2c2742639f0f808ec4374c47 /src/code/z_vimode.c | |
| parent | 2b30c61a2698862e3debd50c2be193df23f9e8b5 (diff) | |
Reduce dependencies on global.h (10) (#2490)
* reduce z64.h size
* fix z_cheap_proc.inc.c
* ,bss
* remove temp delcaration
Diffstat (limited to 'src/code/z_vimode.c')
| -rw-r--r-- | src/code/z_vimode.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/code/z_vimode.c b/src/code/z_vimode.c index 668e9648e..d1f472057 100644 --- a/src/code/z_vimode.c +++ b/src/code/z_vimode.c @@ -1,9 +1,15 @@ #include "vi_mode.h" -#include "global.h" +#include "libu64/debug.h" #include "ultra64/viint.h" +#include "controller.h" +#include "main.h" +#include "regs.h" #include "versions.h" +#include "global.h" +#include "macros.h" + void ViMode_LogPrint(OSViMode* osViMode) { LOG_ADDRESS("osvimodep", osViMode, "../z_vimode.c", 87); LOG_HEX32("osvimodep->comRegs.ctrl", osViMode->comRegs.ctrl, "../z_vimode.c", 88); |
