summaryrefslogtreecommitdiff
path: root/src/buffers
diff options
context:
space:
mode:
authorTharo <17233964+Thar0@users.noreply.github.com>2022-05-03 23:43:09 +0100
committerGitHub <noreply@github.com>2022-05-04 00:43:09 +0200
commit765cfd63e97b4b7ece2ff4d4a65c2b65e1db7501 (patch)
tree6f910b68e18767b4d8021a97895b9da32c7ade62 /src/buffers
parent912b9168752617c26764b81415dc1caa572fc29b (diff)
Name rsp ucodes and surrounding cleanup (#1166)
* Name rsp ucodes and surrounding cleanup * Fix comments alignment and remove unnecessary & in sys_ucode * Change capitalization of sys_ucode variables * Remove unnecessary externs for aspMain * Improvements to Jpeg_ScheduleDecoderTask * Split unknown rsp code into a separate file, spacing
Diffstat (limited to 'src/buffers')
-rw-r--r--src/buffers/gfxbuffers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffers/gfxbuffers.c b/src/buffers/gfxbuffers.c
index 13206fe2b..978dede54 100644
--- a/src/buffers/gfxbuffers.c
+++ b/src/buffers/gfxbuffers.c
@@ -4,10 +4,10 @@
u64 gGfxSPTaskOutputBuffer[0x3000];
// 0xC00 bytes
-u8 gGfxSPTaskYieldBuffer[OS_YIELD_DATA_SIZE];
+u64 gGfxSPTaskYieldBuffer[OS_YIELD_DATA_SIZE / sizeof(u64)];
// 0x400 bytes
-u8 gGfxSPTaskStack[0x400];
+u64 gGfxSPTaskStack[SP_DRAM_STACK_SIZE64];
// 0x12410 bytes each; 0x24820 bytes total
GfxPool gGfxPools[2];