summaryrefslogtreecommitdiff
path: root/include/d/d_select_cursor.h
diff options
context:
space:
mode:
authorjdflyer <jdflyer10@gmail.com>2023-01-21 16:47:18 -0700
committerjdflyer <jdflyer10@gmail.com>2023-01-21 16:47:18 -0700
commit0fb9c6d98f0ffc797764edc942329baba5becc19 (patch)
treee1eda95aa4fdd7caeba26ed4a604aa2c14a1ab37 /include/d/d_select_cursor.h
parent2f764d277f50653b02fba34f38171473d4217ce6 (diff)
d_menu_map_common progress
Diffstat (limited to 'include/d/d_select_cursor.h')
-rw-r--r--include/d/d_select_cursor.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/d/d_select_cursor.h b/include/d/d_select_cursor.h
index e9d3f70360..fa188148e0 100644
--- a/include/d/d_select_cursor.h
+++ b/include/d/d_select_cursor.h
@@ -49,6 +49,18 @@ public:
mPositionY = y;
}
+ void onUpdateFlag() {
+ mUpdateFlag = true;
+ }
+
+ void resetUpdateFlag() {
+ mUpdateFlag = false;
+ }
+
+ bool getUpdateFlag() {
+ return mUpdateFlag;
+ }
+
private:
/* 0x04 */ J2DScreen* mpScreen;
/* 0x08 */ J2DPane* mpPane;
@@ -71,6 +83,8 @@ private:
/* 0xA4 */ f32 field_0xa4[4];
/* 0xB4 */ u8 field_0xb4;
/* 0xB5 */ s8 mNameIdx;
+ /* 0xB6 */ u8 field_0xb6;
+ /* 0xB7 */ bool mUpdateFlag;
};
#endif /* D_D_SELECT_CURSOR_H */