diff options
| author | Mattias Blum <142374929+mattias-blum@users.noreply.github.com> | 2026-07-31 13:33:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-31 13:33:36 -0400 |
| commit | d46b64f9cba1c3561d504a753dcbd77c6ba796f7 (patch) | |
| tree | 33a390f1b6331fd0f4c551835fb5b8276b083d76 /include/d/d_2dnumber.h | |
| parent | 45718d8cccbde7bad1c090de82e343fba68dc27f (diff) | |
d_menu work (#1141)
* more progress
* more progress
* more progress
* more progress
* d_menu work
d_menu_collect class members cleaned up, some functions at 100% matching
* added `Nonmatching` tag to unmatched functions
* more functions at 100%
* more functions matching
* more functions matching
Diffstat (limited to 'include/d/d_2dnumber.h')
| -rw-r--r-- | include/d/d_2dnumber.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/d/d_2dnumber.h b/include/d/d_2dnumber.h index 9839ce8e..3195ab30 100644 --- a/include/d/d_2dnumber.h +++ b/include/d/d_2dnumber.h @@ -83,7 +83,7 @@ public: class dDlst_2DOutFont_c { public: - void setLeftUpPos(f32, f32) {} + void setLeftUpPos(f32 x, f32 y) { mPosTopLeftX = x; mPosTopLeftY = y; } void initial(); void setPane(JUTFont*, fopMsgM_pane_class*, fopMsgM_pane_class*, fopMsgM_pane_class*, fopMsgM_pane_class*); @@ -107,6 +107,9 @@ public: /* 0x18 */ J2DPane* m18; /* 0x1C */ u8 m1C[0x20 - 0x1C]; /* 0x20 */ JUTFont* m20; + /* 0x24 */ u8 m24[0x30 - 0x24]; + /* 0x30 */ f32 mPosTopLeftX; + /* 0x34 */ f32 mPosTopLeftY; }; #endif /* D_2DNUMBER_H */ |
