Review feedback

This commit is contained in:
robojumper
2025-09-13 10:30:36 +02:00
parent 2c1ac8de86
commit 0a4acf1dc8
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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:
+3 -3
View File
@@ -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;