diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-19 22:26:26 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-19 22:26:26 -0400 |
commit | b138e415a2c6b4e42a08e776cd482d91d50bbc2a (patch) | |
tree | 096a3e9dfc9e5c3a5a04ee2822298eed07ac3834 /arm9/src/nutdata.c | |
parent | 669fafdcf6929def1bdc82805f57daa0b75c245e (diff) |
Finish msgdata.c
Diffstat (limited to 'arm9/src/nutdata.c')
-rw-r--r-- | arm9/src/nutdata.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arm9/src/nutdata.c b/arm9/src/nutdata.c index 09542052..bce5c291 100644 --- a/arm9/src/nutdata.c +++ b/arm9/src/nutdata.c @@ -61,18 +61,18 @@ u32 GetNutAttr(struct NutData * nut, u32 attr) } } -u16 * GetNutName(u32 berry_idx, u32 heap_id) +struct String * GetNutName(u32 berry_idx, u32 heap_id) { struct MsgData * msgData = NewMsgDataFromNarc(1, NARC_MSGDATA_MSG, 373, heap_id); - u16 * ret = FUN_0200A914(msgData, berry_idx); + struct String * ret = FUN_0200A914(msgData, berry_idx); DestroyMsgData(msgData); return ret; } -u16 * GetNutDesc(u32 berry_idx, u32 heap_id) +struct String * GetNutDesc(u32 berry_idx, u32 heap_id) { struct MsgData * msgData = NewMsgDataFromNarc(1, NARC_MSGDATA_MSG, 372, heap_id); - u16 * ret = FUN_0200A914(msgData, berry_idx); + struct String * ret = FUN_0200A914(msgData, berry_idx); DestroyMsgData(msgData); return ret; } |