Work on d_menu_dmap (#2073)

* Move some J2DPicture inlines to header

* Work on d_menu_dmap

* JASBasicInst OK

* JASCalc cleanup
This commit is contained in:
hatal175
2024-02-17 04:22:01 +02:00
committed by GitHub
parent 0e05af5226
commit 8b90516cf4
36 changed files with 1789 additions and 1133 deletions
+9
View File
@@ -175,6 +175,8 @@ public:
mCollectCursorPosX = x;
mCollectCursorPosY = y;
}
void setMapDrugFlag(u8 flag) { mMapDrugFlag = flag; }
bool isTempBit(int bit) { return mTempBits & (1 << bit) != 0; }
public:
/* 0x04 */ u8 unk4[4];
@@ -700,6 +702,13 @@ inline bool dMeter2Info_isShopTalkFlag() {
return g_meter2_info.isShopTalkFlag();
}
inline void dMeter2Info_setMapDrugFlag(u8 flag) {
g_meter2_info.setMapDrugFlag(flag);
}
inline bool dMeter2Info_isTempBit(int bit) {
return g_meter2_info.isTempBit(bit);
}
const char* dMeter2Info_getNumberTextureName(int pIndex);
void dMeter2Info_recieveLetter();