1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-12 19:04:38 +00:00
This commit is contained in:
wed 2020-03-20 11:25:53 +11:00
parent a01f868a1a
commit 8a74686890
2 changed files with 4 additions and 3 deletions

View file

@ -1,10 +1,11 @@
#include <ultra64.h>
#include <global.h>
void Lib_MemSet(u8 dest[], size_t size, u8 val)
void Lib_MemSet(u8* dest, size_t size, u8 val)
{
size_t i = 0;
u32 i = 0;
// TODO: Convert this to while/for if possible
if (i == size) return;
do {
*dest++ = val;