summaryrefslogtreecommitdiff
path: root/src/code/graph.c
diff options
context:
space:
mode:
authorRoman971 <32455037+Roman971@users.noreply.github.com>2020-06-14 05:29:59 +0200
committerGitHub <noreply@github.com>2020-06-13 23:29:59 -0400
commit06fc61c83db6adf5d679ae877be17ece401c9c18 (patch)
treee2247d4048d48a8a405aaaac49b05ffab6b94167 /src/code/graph.c
parent031d946db7134194b03a7b08018944ee0b0db7df (diff)
Fix various non matching issues and introduce #ifdef NON_EQUIVALENT instead of #if 0 (#207)
Diffstat (limited to 'src/code/graph.c')
-rw-r--r--src/code/graph.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/code/graph.c b/src/code/graph.c
index 60b9f9296..169134fb1 100644
--- a/src/code/graph.c
+++ b/src/code/graph.c
@@ -221,7 +221,8 @@ void Graph_TaskSet00(GraphicsContext* gfxCtx) {
task->dram_stack = gGfxSPTaskStack;
task->dram_stack_size = sizeof(gGfxSPTaskStack);
task->output_buff = gGfxSPTaskOutputBuffer;
- task->output_buff_size = gGfxSPTaskYieldBuffer; //! @bug (?) should be sizeof(gGfxSPTaskYieldBuffer), probably a typo
+ task->output_buff_size =
+ gGfxSPTaskYieldBuffer; //! @bug (?) should be sizeof(gGfxSPTaskYieldBuffer), probably a typo
task->data_ptr = gfxCtx->workBuffer;
Graph_OpenDisps(dispRefs, gfxCtx, "../graph.c", 828);