diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2021-05-22 07:40:46 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2021-05-22 07:40:46 -0400 |
commit | 616cd9b1c1cf789ae990d4236085d1a6748d3850 (patch) | |
tree | 11cdfe99f7ffc8deea05bd7b17757b6d7e701991 /include/list_menu.h | |
parent | ce0b8bd678043d429543827e6afb586dc30aff03 (diff) |
Un-all-caps list menu function typedefs
Diffstat (limited to 'include/list_menu.h')
-rw-r--r-- | include/list_menu.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/list_menu.h b/include/list_menu.h index 11322674..3f60c6f2 100644 --- a/include/list_menu.h +++ b/include/list_menu.h @@ -22,14 +22,14 @@ struct ListMenuItem // TODO: Document remaining fields. // A lot of these are named based on similar fields in gen 3. -typedef void (*LM_MOVECURSORFUNC)(struct ListMenu *list, s32 index, u8 onInit); -typedef void (*LM_ITEMPRINTFUNC)(struct ListMenu *list, s32 index, u8 y); +typedef void (*LM_MoveCursorFunc_t)(struct ListMenu *list, s32 index, u8 onInit); +typedef void (*LM_ItemPrintFunc_t)(struct ListMenu *list, s32 index, u8 y); struct ListMenuTemplate { /*0x00*/ struct ListMenuItem * items; - /*0x04*/ LM_MOVECURSORFUNC moveCursorFunc; - /*0x08*/ LM_ITEMPRINTFUNC itemPrintFunc; + /*0x04*/ LM_MoveCursorFunc_t moveCursorFunc; + /*0x08*/ LM_ItemPrintFunc_t itemPrintFunc; /*0x0C*/ struct Window * window; /*0x10*/ u16 totalItems; /*0x12*/ u16 maxShowed; |