Document some z_actor.c functions (#1091)

This commit is contained in:
hatal175
2022-01-31 11:36:58 +02:00
committed by GitHub
parent 82cedcc3ef
commit aecd883bbc
5 changed files with 60 additions and 59 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ void* ZeldaArena_Calloc(u32 num, u32 size) {
bzero(ret, n);
}
ZeldaArena_CheckPointer(ret, n, "zelda_calloc", "確保");
ZeldaArena_CheckPointer(ret, n, "zelda_calloc", "確保"); // "Secure"
return ret;
}