summaryrefslogtreecommitdiff
path: root/src/cpu.c
diff options
context:
space:
mode:
authorSeth Barberee <seth.barberee@gmail.com>2021-05-15 16:59:55 -0700
committerGitHub <noreply@github.com>2021-05-15 18:59:55 -0500
commitf402e46cd3c8b7236673d6edbae77903a7cc0618 (patch)
tree37a19f3ab35a73c29d4d6da565741beaf7bb547f /src/cpu.c
parentf65dee5a143bd543c74c010d7252eb76893ee243 (diff)
Sese's April/May Dump (#37)
* splitting lots of pokemon square and labeling lots of other things * actually commit this stuff * more moving data and things * more screen work * split out some pokemon dungeon data * lots of data work * push more data work * split kecleon, decomp another kanghaskhan func, and try to doc UpdateBGControl more * lots of item work * label more item things * subtype -> category and doc types/category
Diffstat (limited to 'src/cpu.c')
-rw-r--r--src/cpu.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpu.c b/src/cpu.c
index a948d66..7a50801 100644
--- a/src/cpu.c
+++ b/src/cpu.c
@@ -32,9 +32,9 @@ u32 sub_800CDE0(void)
return 1;
}
-void CpuCopy(void* src, void *dest, s32 size)
+void CpuCopy(void* dest, void *src, s32 size)
{
- CpuCopy32(dest, src, size);
+ CpuCopy32(src, dest, size);
}
void CpuClear(void* dest, s32 size)
@@ -42,9 +42,9 @@ void CpuClear(void* dest, s32 size)
CpuFill32(NULL, dest, size);
}
-void CpuFill(void* src, void *dest, s32 size)
+void CpuFill(void* dest, void *value, s32 size)
{
- CpuFill32(dest, src, size);
+ CpuFill32(value, dest, size);
}
#ifdef NONMATCHING