diff --git a/include/d/a/d_a_player.h b/include/d/a/d_a_player.h index 4eb58674..2672af43 100644 --- a/include/d/a/d_a_player.h +++ b/include/d/a/d_a_player.h @@ -58,7 +58,7 @@ public: void setBeetleBackAnim(); s32 getBeetleWarningTimeLeft(); - // Item Selection functions + // Item select/equip/use functions [0x801E3160 - 0x801E7AD0] ? static s32 calcItemWheelSelection(bool reset, s32 numOptions); public: diff --git a/src/d/lyt/d_lyt_pause.cpp b/src/d/lyt/d_lyt_pause.cpp index afc09d73..eb53e5ee 100644 --- a/src/d/lyt/d_lyt_pause.cpp +++ b/src/d/lyt/d_lyt_pause.cpp @@ -1009,11 +1009,11 @@ bool dLytPauseMgr_c::checkRing() { s32 tab = lytControl->getPauseDisp00Tab(); - if (dPad::getDownB() && tab == 0) { + if (dPad::getDownB() && tab == TAB_ITEM) { return true; - } else if (dPad::getDownMinus() && tab == 1) { + } else if (dPad::getDownMinus() && tab == TAB_POUCH) { return true; - } else if (dPad::getDownC() && tab == 2) { + } else if (dPad::getDownC() && tab == TAB_DOWSING) { return true; } return false;