diff options
| author | mzxrules <mzxrules@gmail.com> | 2025-02-19 05:54:39 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-19 05:54:39 -0500 |
| commit | 981af4b6af34cdd9e4f55f8f9f4fce803600fa62 (patch) | |
| tree | b8be209d7db0077a326ecdbdad140b6b9aab2bf8 /src/boot | |
| parent | 3d61fb85efa13203db2e4888c9e892833a164277 (diff) | |
Reduce overlay dependencies on global.h (8) (#2478)
* move variables into z64environment.h
* z_room.h
* z64sram.h, z64ss_sram.h, z64font.h, kanread.h
* z64lifemeter.h, z64debug.h, debug_arena.h
* buffers.h
* remove z_bgcheck global
* gamealloc.h
* suggestions
* .bdd
Diffstat (limited to 'src/boot')
| -rw-r--r-- | src/boot/idle.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/boot/idle.c b/src/boot/idle.c index b1a6dd2c3..ffc6de34b 100644 --- a/src/boot/idle.c +++ b/src/boot/idle.c @@ -1,10 +1,15 @@ -#include "global.h" +#include "buffers.h" +#include "segment_symbols.h" #include "stack.h" +#include "stackcheck.h" #include "terminal.h" #include "versions.h" #include "z64thread.h" -#pragma increment_block_number "gc-eu:64 gc-eu-mq:64 gc-jp:64 gc-jp-ce:64 gc-jp-mq:64 gc-us:64 gc-us-mq:64 ntsc-1.2:64" +#include "global.h" + +#pragma increment_block_number "gc-eu:128 gc-eu-mq:128 gc-jp:128 gc-jp-ce:128 gc-jp-mq:128 gc-us:128 gc-us-mq:128" \ + "ntsc-1.0:138 ntsc-1.1:138 ntsc-1.2:138 pal-1.0:136 pal-1.1:136" OSThread sMainThread; #if OOT_VERSION < PAL_1_0 |
