diff options
| author | Derek Hensley <hensley.derek58@gmail.com> | 2025-01-27 07:48:59 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-27 12:48:59 -0300 |
| commit | 982ca889e2180165f7d2dd33c5fda2b6e8f998a0 (patch) | |
| tree | 0850d4416d7971fe738300c200a394f1693791df /include | |
| parent | b9267f0550e4f408c93ac9d091332f51e9ea7838 (diff) | |
Misc Cleanup (#1782)
* Remove some unnecessary casts in Graph_TaskSet00
* gGfxSPTaskYieldBuffer as u64
* gGfxSPTaskStack size macro
* R_THREE_DAY_CLOCK_Y_POS set to negative number
* scope cfb in Graph_TaskSet00
* Graph_ThreadEntry types
* func_80124618
* SysCfb_SetHiResMode
Diffstat (limited to 'include')
| -rw-r--r-- | include/buffers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/buffers.h b/include/buffers.h index fe9fa4196..28047f594 100644 --- a/include/buffers.h +++ b/include/buffers.h @@ -18,8 +18,8 @@ typedef union { extern BufferLow gLoBuffer; -extern u8 gGfxSPTaskYieldBuffer[OS_YIELD_DATA_SIZE]; -extern STACK(gGfxSPTaskStack, 0x400); +extern u64 gGfxSPTaskYieldBuffer[OS_YIELD_DATA_SIZE / sizeof(u64)]; +extern STACK(gGfxSPTaskStack, SP_DRAM_STACK_SIZE8); extern GfxPool gGfxPools[2]; extern u8 gAudioHeap[0x138000]; |
