Yeah, turns out I didn't set that. Now I have a new problem. When I press up or down on any menu item, orpres right or left on the rightmost or leftmost ones respectively, the cursor goes to the topleft corner. and there only appears to be one menu item there, as when I press any direction key after that, it goes back to the 4 menu items I had before. PS: I set the max menu limit to 12.
if (Link->PressStart == true && Tango_MenuIsActive() == false)
{
Link->PressStart = false;
Link->InputStart = false;
Tango_InitializeMenu();
Tango_AddMenuChoice(1, 48, 48);
Tango_AddMenuChoice(2, 96, 48);
Tango_AddMenuChoice(3, 144, 48);
Tango_AddMenuChoice(4, 192, 48);
Tango_AddMenuChoice(5, 48, 80);
Tango_AddMenuChoice(6, 96, 80);
Tango_AddMenuChoice(7, 144, 80);
Tango_AddMenuChoice(8, 192, 80);
Tango_SetMenuCursor(33712, 11);
Tango_SetMenuSFX(5, 25, 40);
Tango_ActivateMenu(true);
}
else if (Tango_MenuIsActive() == true)
{
Screen->DrawLayer(6, 1, 0x71, 0, 0, 0, 0, 128);
Screen->FastTile(6, 48, 64, 63841, 0, OP_OPAQUE);
Screen->FastTile(6, 96, 64, 63855, 0, OP_OPAQUE);
Screen->FastTile(6, 144, 64, 64174, 0, OP_OPAQUE);
Screen->FastTile(6, 192, 64, 981, 8, OP_OPAQUE);
Screen->FastTile(6, 48, 96, 65003, 0, OP_OPAQUE);
Screen->FastTile(6, 96, 96, 65002, 0, OP_OPAQUE);
Screen->FastTile(6, 144, 96, 65000, 0, OP_OPAQUE);
Screen->FastTile(6, 192, 96, 65001, 8, OP_OPAQUE);
int Numbero = 48;
Screen->FastCombo(6, Numbero, 112, 30764, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero + 16, 112, 30766, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero, 128, 30772, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero + 16, 128, 30774, 0, OP_OPAQUE);
Numbero = 80;
Screen->FastCombo(6, Numbero, 112, 30764, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero + 16, 112, 30766, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero, 128, 30772, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero + 16, 128, 30774, 0, OP_OPAQUE);
Numbero = 112;
Screen->FastCombo(6, Numbero, 112, 30764, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero + 16, 112, 30766, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero, 128, 30772, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero + 16, 128, 30774, 0, OP_OPAQUE);
Numbero = 144;
Screen->FastCombo(6, Numbero, 112, 30764, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero + 16, 112, 30766, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero, 128, 30772, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero + 16, 128, 30774, 0, OP_OPAQUE);
Numbero = 176;
Screen->FastCombo(6, Numbero, 112, 30764, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero + 16, 112, 30766, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero, 128, 30772, 0, OP_OPAQUE);
Screen->FastCombo(6, Numbero + 16, 128, 30774, 0, OP_OPAQUE);
Screen->FastCombo(6, 56, 120, 32929, 6, OP_OPAQUE);
if (Link->Item[157] == true)
{
Screen->FastCombo(6, 88, 120, 32933, 0, OP_OPAQUE);
}
if (Link->Item[158] == true)
{
Screen->FastCombo(6, 120, 120, 32937, 0, OP_OPAQUE);
}
if (Link->Item[159] == true)
{
Screen->FastCombo(6, 152, 120, 32941, 0, OP_OPAQUE);
}
if (Link->Item[160] == true)
{
Screen->FastCombo(6, 184, 120, 32945, 0, OP_OPAQUE);
}
}