diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-05-08 11:21:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-08 11:21:09 -0400 |
commit | 4767019e4f541a19577a9bfd09851a94b2e3c745 (patch) | |
tree | 3027698033130de48955e81148f49fd8500c082c /src/item_pc.c | |
parent | 608194c53db3d2f6446dfb3f498da9a03244e134 (diff) | |
parent | 693e1c0fc934e3e2ee343d2c48ee61bb122e388d (diff) |
Merge pull request #432 from PikalaxALT/fix_list_menu
Replace unknown list struct
Diffstat (limited to 'src/item_pc.c')
-rw-r--r-- | src/item_pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/item_pc.c b/src/item_pc.c index 4366997ba..bf1bf87df 100644 --- a/src/item_pc.c +++ b/src/item_pc.c @@ -767,7 +767,7 @@ static void ItemPc_MoveItemModeInit(u8 taskId, s16 pos) { s16 * data = gTasks[taskId].data; - ListMenuSetUnkIndicatorsStructField(data[0], 16, 1); + ListMenuSetTemplateField(data[0], LISTFIELD_CURSORKIND, 1); data[1] = pos; sStateDataPtr->moveModeOrigPos = pos; StringCopy(gStringVar1, ItemId_GetName(ItemPc_GetItemIdBySlotId(data[1]))); |