diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-01-14 21:27:45 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-01-15 16:00:45 -0500 |
commit | 04d176334ad590d3462e3c1eb75c1313705ae183 (patch) | |
tree | 865ca807901bf57e63523b19f2d535c7ef391f89 /src/shop.c | |
parent | 2f81b4a204d051aeb88580dc63381011ec49fcbb (diff) |
Document some Quest Log
Diffstat (limited to 'src/shop.c')
-rw-r--r-- | src/shop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shop.c b/src/shop.c index 0eb4baaa1..b410b32b9 100644 --- a/src/shop.c +++ b/src/shop.c @@ -1127,11 +1127,11 @@ static void RecordQuestLogItemPurchase(void) v = gShopMenuHistory[0].unkA; if (v != 0) - sub_8113550(v + 0x24, (const u16 *)&gShopMenuHistory[0]); + SetQuestLogEvent(v + QL_EVENT_USED_POKEMART, (const u16 *)&gShopMenuHistory[0]); v = gShopMenuHistory[1].unkA; if (v != 0) - sub_8113550(v + 0x24, (const u16 *)&gShopMenuHistory[1]); + SetQuestLogEvent(v + QL_EVENT_USED_POKEMART, (const u16 *)&gShopMenuHistory[1]); } void CreatePokemartMenu(const u16 *itemsForSale) |