diff options
author | scnorton <scnorton@biociphers.org> | 2017-06-13 10:19:06 -0400 |
---|---|---|
committer | scnorton <scnorton@biociphers.org> | 2017-06-13 10:19:06 -0400 |
commit | 175d4724a33bbb34e1a5ee609584a45ab9685058 (patch) | |
tree | 976418c3f6efec04593d9dd3e7f3e8ca09869713 /include/menu.h | |
parent | 71f813e6e21e6ad5ec84b497cbb123b521979b92 (diff) | |
parent | 8ef6c0004cc1093e1533eb2d41fbde71ee93d22c (diff) |
Merge branch 'decoration'
Diffstat (limited to 'include/menu.h')
-rwxr-xr-x[-rw-r--r--] | include/menu.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/menu.h b/include/menu.h index 04ab78b27..98d7afcc3 100644..100755 --- a/include/menu.h +++ b/include/menu.h @@ -12,13 +12,13 @@ struct MenuAction struct MenuAction2 { const u8 *text; - u8 (*func)(u8); + void (*func)(u8); }; struct MenuAction3 { - u8 (*func1)(u8); - u8 (*func2)(u8); + void (*func1)(u8); + void (*func2)(u8); }; void CloseMenu(void); @@ -64,7 +64,7 @@ s8 ProcessMenuInputNoWrap_(void); u8 MenuPrint_PixelCoords(const u8 *, u8, u16, u8); u8 sub_8072A18(const u8 *, u8, u16, u8, u32); u8 unref_sub_8072A5C(u8 *, u8 *, u8, u16, u8, u32); -int sub_8072AB0(u8 *, u8, u16, u8, u8, u32); +int sub_8072AB0(const u8 *, u8, u16, u8, u8, u32); void MenuPrint_RightAligned(u8 *, u8, u8); void sub_8072B80(u8 *, u8, u8, u8 *); void sub_8072BD8(const u8 *, u8, u8, u16); |