summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorjiangzhengwenjz <jiangzhengwenjzw@qq.com>2019-07-09 23:54:05 +0800
committerjiangzhengwenjz <jiangzhengwenjzw@qq.com>2019-07-13 05:26:19 +0800
commit05371e58753668147ec9e4d4bd161e5a044c058b (patch)
treefe0b3d001bc4c58c1d6d863400dc9bae68200bbb /include
parenteb1719afc6e04e0916ba2080fce9685b422980fa (diff)
fixed more header issue
Diffstat (limited to 'include')
-rw-r--r--include/menu.h2
-rw-r--r--include/menu_helpers.h3
-rw-r--r--include/new_menu_helpers.h2
3 files changed, 4 insertions, 3 deletions
diff --git a/include/menu.h b/include/menu.h
index 3cd7b140a..cc685d682 100644
--- a/include/menu.h
+++ b/include/menu.h
@@ -55,6 +55,8 @@ s8 Menu_ProcessInput_other(void);
s8 Menu_ProcessInputNoWrapAround(void);
s8 Menu_ProcessInput(void);
u8 Menu_GetCursorPos(void);
+u8 Menu_MoveCursorNoWrapAround(s8 cursorDelta);
+u8 Menu_MoveCursor(s8 cursorDelta);
u8 Menu_InitCursor(u8 windowId, u8 fontId, u8 left, u8 top, u8 cursorHeight, u8 numChoices, u8 initialCursorPos);
u8 Menu_InitCursorInternal(u8 windowId, u8 fontId, u8 left, u8 top, u8 cursorHeight, u8 numChoices, u8 initialCursorPos, bool8 APressMuted);
void TopBarWindowPrintTwoStrings(const u8 *string, const u8 *string2, bool8 fgColorChooser, u8 notUsed, bool8 copyToVram);
diff --git a/include/menu_helpers.h b/include/menu_helpers.h
index 72e014653..7fe8c19b2 100644
--- a/include/menu_helpers.h
+++ b/include/menu_helpers.h
@@ -4,7 +4,8 @@
#include "global.h"
#include "task.h"
-struct YesNoFuncTable {
+struct YesNoFuncTable
+{
TaskFunc yesFunc;
TaskFunc noFunc;
};
diff --git a/include/new_menu_helpers.h b/include/new_menu_helpers.h
index c52741d92..d68957e62 100644
--- a/include/new_menu_helpers.h
+++ b/include/new_menu_helpers.h
@@ -48,7 +48,5 @@ void sub_80F7974(const u8 * text);
void sub_80F7998(void);
void sub_80F79A4(void);
void SetDefaultFontsPointer(void);
-u8 GetFontAttribute(u8 fontId, u8 attributeId);
-u8 GetMenuCursorDimensionByFont(u8 fontId, u8 whichDimension);
#endif // GUARD_NEW_MENU_HELPERS_H