mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-09-09 19:01:12 -04:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user