summaryrefslogtreecommitdiff
path: root/src/code/debug_malloc.c
diff options
context:
space:
mode:
authorDragorn421 <Dragorn421@users.noreply.github.com>2021-09-04 15:33:19 +0200
committerGitHub <noreply@github.com>2021-09-04 15:33:19 +0200
commit81830a6e8bfa62681924c0b535cfd1adf0423860 (patch)
tree460ce19a4fcb84438d307cfdbcbbc3f18afe788a /src/code/debug_malloc.c
parent9b840ad84229dee3afc64e49df1250e06bfc7bc2 (diff)
Cleanup translation comments (#924)
* `// Translates to:` -> `//` * `// Translation: ([^"].*)` -> `// "$1"` * Manual cleanup * Manual cleanup in `src/code/` * Use more lowercase for some all caps translations * Move translations to end of lines where it fits under 100 bytes * Move one translation to end of line manually * Run formatter * Cleanup in EnHeishi1 as suggested by Roman * Update src/code/z_play.c Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com> Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com>
Diffstat (limited to 'src/code/debug_malloc.c')
-rw-r--r--src/code/debug_malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/debug_malloc.c b/src/code/debug_malloc.c
index d92ec42bf..73ae71321 100644
--- a/src/code/debug_malloc.c
+++ b/src/code/debug_malloc.c
@@ -83,7 +83,7 @@ void* DebugArena_Calloc(u32 num, u32 size) {
}
void DebugArena_Display(void) {
- // Zelda heap display (devs forgot to change "Zelda" to "Debug" apparently)
+ // "Zelda heap display" (devs forgot to change "Zelda" to "Debug" apparently)
osSyncPrintf("ゼルダヒープ表示\n");
__osDisplayArena(&sDebugArena);
}