diff options
| author | Tharo <17233964+Thar0@users.noreply.github.com> | 2022-03-13 23:22:14 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-13 19:22:14 -0400 |
| commit | 93096a45b61cc872b1ea482feb9753daa8f2b069 (patch) | |
| tree | 404d30693d39787967edf07e73fab0d7cc225368 /src/code/graph.c | |
| parent | 61b864a89ce9a98c1280c13ae818fd848432cf6c (diff) | |
More documentation for IrqMgr (#1144)
* doc irqmgr
* Fix
* Format
* Review suggestions
* Fix
* Some more review
* Further changes
Diffstat (limited to 'src/code/graph.c')
| -rw-r--r-- | src/code/graph.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/code/graph.c b/src/code/graph.c index 9c988bbb0..97a7d3792 100644 --- a/src/code/graph.c +++ b/src/code/graph.c @@ -323,14 +323,14 @@ void Graph_Update(GraphicsContext* gfxCtx, GameState* gameState) { if (pool->headMagic != GFXPOOL_HEAD_MAGIC) { //! @bug (?) : "problem = true;" may be missing - osSyncPrintf("%c", 7); + osSyncPrintf("%c", BEL); // "Dynamic area head is destroyed" osSyncPrintf(VT_COL(RED, WHITE) "ダイナミック領域先頭が破壊されています\n" VT_RST); Fault_AddHungupAndCrash("../graph.c", 1070); } if (pool->tailMagic != GFXPOOL_TAIL_MAGIC) { problem = true; - osSyncPrintf("%c", 7); + osSyncPrintf("%c", BEL); // "Dynamic region tail is destroyed" osSyncPrintf(VT_COL(RED, WHITE) "ダイナミック領域末尾が破壊されています\n" VT_RST); Fault_AddHungupAndCrash("../graph.c", 1076); @@ -339,19 +339,19 @@ void Graph_Update(GraphicsContext* gfxCtx, GameState* gameState) { if (THGA_IsCrash(&gfxCtx->polyOpa)) { problem = true; - osSyncPrintf("%c", 7); + osSyncPrintf("%c", BEL); // "Zelda 0 is dead" osSyncPrintf(VT_COL(RED, WHITE) "ゼルダ0は死んでしまった(graph_alloc is empty)\n" VT_RST); } if (THGA_IsCrash(&gfxCtx->polyXlu)) { problem = true; - osSyncPrintf("%c", 7); + osSyncPrintf("%c", BEL); // "Zelda 1 is dead" osSyncPrintf(VT_COL(RED, WHITE) "ゼルダ1は死んでしまった(graph_alloc is empty)\n" VT_RST); } if (THGA_IsCrash(&gfxCtx->overlay)) { problem = true; - osSyncPrintf("%c", 7); + osSyncPrintf("%c", BEL); // "Zelda 4 is dead" osSyncPrintf(VT_COL(RED, WHITE) "ゼルダ4は死んでしまった(graph_alloc is empty)\n" VT_RST); } |
