diff options
| author | Carco_21 <144170194+carter-ktb21@users.noreply.github.com> | 2025-12-20 21:06:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-20 18:06:17 -0800 |
| commit | c434c2edde34aaa21e8e186b880c3801f969d14a (patch) | |
| tree | af1c6f72e54edec6e688e869d258c03bb23aed0e /include/d/d_map_path.h | |
| parent | a1c691ec92eac461d558e22ec46c1822ebb3d75b (diff) | |
Various d_ work (#2968)
* map work
* various meter work
* d_meter_button ShieldD almost equivalent
* error fix
Diffstat (limited to 'include/d/d_map_path.h')
| -rw-r--r-- | include/d/d_map_path.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/d/d_map_path.h b/include/d/d_map_path.h index a362d85cd3..d461783150 100644 --- a/include/d/d_map_path.h +++ b/include/d/d_map_path.h @@ -2,6 +2,7 @@ #define D_MAP_D_MAP_PATH_H #include "d/d_drawlist.h" +#include "JSystem/JHostIO/JORMContext.h" namespace dMpath_HIO_n { struct list_s { @@ -11,14 +12,14 @@ namespace dMpath_HIO_n { class hioList_c { public: - /* 0x00 */ list_s field_0x0; + /* 0x00 */ list_s mList; virtual ~hioList_c() {} virtual void copySrcToHio() = 0; virtual void copyHioToDst() = 0; virtual void copyBufToHio(const char*) = 0; - void set(const list_s& param_1) { field_0x0 = param_1; } + void set(const list_s& param_1) { mList = param_1; } void gen(JORMContext*); void update(JORMContext*); u32 addString(char*, u32, u32) const; @@ -152,6 +153,7 @@ public: virtual const GXColor* getDecoLineColor(int, int); virtual s32 getDecorationLineWidth(int); + f32 getCmPerTexel() const { return mCmPerTexel; } bool isDrawAreaCheck(const Vec& param_0) { return (param_0.x >= mPosX - field_0x8 * 2.0f && param_0.x <= mPosX + field_0x8 * 2.0f) && |
