summaryrefslogtreecommitdiff
path: root/src/trade.c
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2021-04-15 17:31:50 -0400
committerGriffinR <griffin.g.richards@gmail.com>2021-04-15 18:46:20 -0400
commit838a452363c1296e3c9a0d92ce41f59a75e9c844 (patch)
treeb93273b3d9834725bff0f6803fe96a8c17eecd8c /src/trade.c
parenta1ed59450e133a9dd84c59869418d449e48fc1ce (diff)
Doc storage - choose box menu, move wallpaper gfx
Diffstat (limited to 'src/trade.c')
-rw-r--r--src/trade.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trade.c b/src/trade.c
index f423b20af..12a2f4b33 100644
--- a/src/trade.c
+++ b/src/trade.c
@@ -1460,10 +1460,10 @@ static void TradeMenuShowMonSummaryScreen(void)
{
// Player's party
if (sTradeMenuData->cursorPosition < PARTY_SIZE)
- ShowPokemonSummaryScreen(PSS_MODE_LOCK_MOVES, gPlayerParty, sTradeMenuData->cursorPosition, sTradeMenuData->partyCounts[TRADE_PLAYER] - 1, CB2_ReturnToTradeMenu);
+ ShowPokemonSummaryScreen(SUMMARY_MODE_LOCK_MOVES, gPlayerParty, sTradeMenuData->cursorPosition, sTradeMenuData->partyCounts[TRADE_PLAYER] - 1, CB2_ReturnToTradeMenu);
// Partner's party
else
- ShowPokemonSummaryScreen(PSS_MODE_LOCK_MOVES, gEnemyParty, sTradeMenuData->cursorPosition - PARTY_SIZE, sTradeMenuData->partyCounts[TRADE_PARTNER] - 1, CB2_ReturnToTradeMenu);
+ ShowPokemonSummaryScreen(SUMMARY_MODE_LOCK_MOVES, gEnemyParty, sTradeMenuData->cursorPosition - PARTY_SIZE, sTradeMenuData->partyCounts[TRADE_PARTNER] - 1, CB2_ReturnToTradeMenu);
FreeAllWindowBuffers();
}
}