Rename variables to match current repo

Kurausukun 2021-04-07 23:55:04 -04:00
parent 6254aaddce
commit 3ab68e51f0
1 changed files with 4 additions and 4 deletions

@ -191,14 +191,14 @@ static void SetShopItemsForSale(const u16 *items)
u8 badgeCount = GetNumberOfBadges();
if (items == NULL)
gMartInfo.itemList = sShopInventories[badgeCount];
sMartInfo.itemList = sShopInventories[badgeCount];
else
gMartInfo.itemList = items;
sMartInfo.itemList = items;
gMartInfo.itemCount = 0;
sMartInfo.itemCount = 0;
while (gMartInfo.itemList[i])
{
gMartInfo.itemCount++;
sMartInfo.itemCount++;
i++;
}
}