1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-15 12:24:39 +00:00

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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 60 additions and 59 deletions

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;
}