kankyo / m_do_ext debug stuff (#2759)

* kankyo debug work

* finish draw packets
This commit is contained in:
TakaRikka
2025-10-27 20:55:46 -07:00
committed by GitHub
parent 577747e228
commit 73927f50a9
29 changed files with 4382 additions and 597 deletions
+7
View File
@@ -69,6 +69,11 @@
height); \
}
#define DEFINE_UPDATE_COMBO_BOX(T) \
void updateComboBox(u32 mode, T* pSrc, u32 param_2) { \
updateSelectorSub(mode, (uintptr_t)pSrc, *pSrc, param_2); \
}
#define DEFINE_UPDATE_SLIDER(T) \
void updateSlider(u32 mode, T* pSrc, T rangeMin, T rangeMax, u32 param_5) { \
updateSliderSub(mode, (uintptr_t)pSrc, *pSrc, rangeMin, rangeMax, param_5); \
@@ -237,6 +242,8 @@ public:
DEFINE_START_COMBO_BOX_ID(int, JORPropertyEvent::EKind_ValueID)
DEFINE_UPDATE_COMBO_BOX(u8)
void endComboBox() { endSelectorSub(); }
void genComboBoxItem(const char* label, s32 itemNo) {