Document files with a few remaining symbols
This commit is contained in:
@@ -669,7 +669,7 @@ void VBlankCB_BagMenuRun(void)
|
||||
|
||||
static void CB2_Bag(void)
|
||||
{
|
||||
while(MenuHelpers_CallLinkSomething() != TRUE && SetupBagMenu() != TRUE && MenuHelpers_LinkSomething() != TRUE)
|
||||
while(MenuHelpers_ShouldWaitForLinkRecv() != TRUE && SetupBagMenu() != TRUE && MenuHelpers_IsLinkActive() != TRUE)
|
||||
{};
|
||||
}
|
||||
|
||||
@@ -705,7 +705,7 @@ static bool8 SetupBagMenu(void)
|
||||
gMain.state++;
|
||||
break;
|
||||
case 6:
|
||||
if (!MenuHelpers_LinkSomething())
|
||||
if (!MenuHelpers_IsLinkActive())
|
||||
ResetTasks();
|
||||
gMain.state++;
|
||||
break;
|
||||
@@ -1215,7 +1215,7 @@ static void Task_BagMenu_HandleInput(u8 taskId)
|
||||
u16* cursorPos = &gBagPosition.cursorPosition[gBagPosition.pocket];
|
||||
s32 listPosition;
|
||||
|
||||
if (MenuHelpers_CallLinkSomething() != TRUE && !gPaletteFade.active)
|
||||
if (MenuHelpers_ShouldWaitForLinkRecv() != TRUE && !gPaletteFade.active)
|
||||
{
|
||||
switch (GetSwitchBagPocketDirection())
|
||||
{
|
||||
@@ -1354,7 +1354,7 @@ static void Task_SwitchBagPocket(u8 taskId)
|
||||
{
|
||||
s16* data = gTasks[taskId].data;
|
||||
|
||||
if (!MenuHelpers_LinkSomething() && !IsWallysBag())
|
||||
if (!MenuHelpers_IsLinkActive() && !IsWallysBag())
|
||||
{
|
||||
switch (GetSwitchBagPocketDirection())
|
||||
{
|
||||
@@ -1449,7 +1449,7 @@ static void Task_HandleSwappingItemsInput(u8 taskId)
|
||||
{
|
||||
s16* data = gTasks[taskId].data;
|
||||
|
||||
if (MenuHelpers_CallLinkSomething() != TRUE)
|
||||
if (MenuHelpers_ShouldWaitForLinkRecv() != TRUE)
|
||||
{
|
||||
if (JOY_NEW(SELECT_BUTTON))
|
||||
{
|
||||
@@ -1589,7 +1589,7 @@ static void OpenContextMenu(u8 taskId)
|
||||
case ITEMMENULOCATION_BERRY_TREE:
|
||||
case ITEMMENULOCATION_ITEMPC:
|
||||
default:
|
||||
if (MenuHelpers_LinkSomething() == TRUE || InUnionRoom() == TRUE)
|
||||
if (MenuHelpers_IsLinkActive() == TRUE || InUnionRoom() == TRUE)
|
||||
{
|
||||
if (gBagPosition.pocket == KEYITEMS_POCKET || !IsHoldingItemAllowed(gSpecialVar_ItemId))
|
||||
{
|
||||
@@ -1691,7 +1691,7 @@ static void Task_ItemContext_Normal(u8 taskId)
|
||||
|
||||
static void Task_ItemContext_SingleRow(u8 taskId)
|
||||
{
|
||||
if (MenuHelpers_CallLinkSomething() != TRUE)
|
||||
if (MenuHelpers_ShouldWaitForLinkRecv() != TRUE)
|
||||
{
|
||||
s8 selection = Menu_ProcessInputNoWrap();
|
||||
switch (selection)
|
||||
@@ -1712,7 +1712,7 @@ static void Task_ItemContext_SingleRow(u8 taskId)
|
||||
|
||||
static void Task_ItemContext_MultipleRows(u8 taskId)
|
||||
{
|
||||
if (MenuHelpers_CallLinkSomething() != TRUE)
|
||||
if (MenuHelpers_ShouldWaitForLinkRecv() != TRUE)
|
||||
{
|
||||
s8 cursorPos = Menu_GetCursorPos();
|
||||
if (JOY_NEW(DPAD_UP))
|
||||
|
||||
Reference in New Issue
Block a user