diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2021-05-24 11:08:11 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2021-05-24 11:08:11 -0400 |
commit | cde6e91b693c77f93546b8fc23dde1c53dcb0a4f (patch) | |
tree | c02299cf6a87e5d085ac3bf37d23fef05435e8ba /arm9/src/sav_chatot.c | |
parent | febbf5dc3d673ae40df7b6c545a40e945e6eda17 (diff) |
Don't use MI internals in GF code
Diffstat (limited to 'arm9/src/sav_chatot.c')
-rw-r--r-- | arm9/src/sav_chatot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arm9/src/sav_chatot.c b/arm9/src/sav_chatot.c index 7b240a99..86786e66 100644 --- a/arm9/src/sav_chatot.c +++ b/arm9/src/sav_chatot.c @@ -10,7 +10,7 @@ THUMB_FUNC u32 Sav2_Chatot_sizeof(void) THUMB_FUNC void Sav2_Chatot_init(struct SaveChatotSoundClip * chatot)
{
- MIi_CpuClear32(0, chatot, sizeof(struct SaveChatotSoundClip));
+ MI_CpuClear32(chatot, sizeof(struct SaveChatotSoundClip));
chatot->exists = FALSE;
}
@@ -94,5 +94,5 @@ THUMB_FUNC void Chatot_Encode(struct SaveChatotSoundClip * chatot, const s8 * da THUMB_FUNC void Chatot_copy(struct SaveChatotSoundClip * dest, const struct SaveChatotSoundClip * src)
{
- MIi_CpuCopyFast(src, dest, sizeof(struct SaveChatotSoundClip));
+ MI_CpuCopyFast(src, dest, sizeof(struct SaveChatotSoundClip));
}
|