Clean up wonder card/news view

This commit is contained in:
GriffinR
2021-10-17 01:15:16 -04:00
parent 356e6d7f08
commit c7d550e96c
6 changed files with 244 additions and 195 deletions
+6 -6
View File
@@ -209,13 +209,13 @@ static const struct WindowTemplate sWindowTemplate_GiftSelect_1Option = {
static const struct ListMenuItem sListMenuItems_CardsOrNews[] = {
{ gText_WonderCards, 0 },
{ gText_WonderNews, 1 },
{ gText_Exit3, -2 }
{ gText_Exit3, LIST_CANCEL }
};
static const struct ListMenuItem sListMenuItems_WirelessOrFriend[] = {
{ gText_WirelessCommunication, 0 },
{ gText_Friend2, 1 },
{ gText_Cancel2, -2 }
{ gText_Cancel2, LIST_CANCEL }
};
static const struct ListMenuTemplate sListMenuTemplate_ThreeOptions = {
@@ -243,24 +243,24 @@ static const struct ListMenuItem sListMenuItems_ReceiveSendToss[] = {
{ gText_Receive, 0 },
{ gText_Send, 1 },
{ gText_Toss, 2 },
{ gText_Cancel2, LIST_CANCEL }
{ gText_Cancel2, LIST_CANCEL }
};
static const struct ListMenuItem sListMenuItems_ReceiveToss[] = {
{ gText_Receive, 0 },
{ gText_Toss, 2 },
{ gText_Cancel2, LIST_CANCEL }
{ gText_Cancel2, LIST_CANCEL }
};
static const struct ListMenuItem sListMenuItems_ReceiveSend[] = {
{ gText_Receive, 0 },
{ gText_Send, 1 },
{ gText_Cancel2, LIST_CANCEL }
{ gText_Cancel2, LIST_CANCEL }
};
static const struct ListMenuItem sListMenuItems_Receive[] = {
{ gText_Receive, 0 },
{ gText_Cancel2, LIST_CANCEL }
{ gText_Cancel2, LIST_CANCEL }
};
static const struct ListMenuTemplate sListMenu_ReceiveSendToss = {