From 4df1937738c4dc39d23f5c4e4b0d6a3774ff1b17 Mon Sep 17 00:00:00 2001 From: Diegoisawesome Date: Mon, 31 Oct 2016 03:14:22 -0500 Subject: Ported task.c and others from pokeruby --- src/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/malloc.c') diff --git a/src/malloc.c b/src/malloc.c index 8bfaf5ef0..c93e096c2 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -135,7 +135,7 @@ void *AllocZeroedInternal(void *heapStart, u32 size) if (size & 3) size = 4 * ((size / 4) + 1); - CpuFill32(mem, 0, size); + CpuFill32(0, mem, size); } return mem; -- cgit v1.2.3