diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-08-30 21:28:03 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-08-30 21:28:03 +0200 |
commit | 96f2b995dc67d1278bd65b3661426da95503cb5d (patch) | |
tree | 6820287293d8aaa5015ea95dbbc0bd34c3bd5a5b /src/item.c | |
parent | 43b74032fa981a06e2e66fe5a2d4cf2edaad27c8 (diff) |
Pyramid bag review changes
Diffstat (limited to 'src/item.c')
-rw-r--r-- | src/item.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/item.c b/src/item.c index 3866d7316..b4a2fd6f0 100644 --- a/src/item.c +++ b/src/item.c @@ -754,7 +754,7 @@ u16 BagGetQuantityByPocketPosition(u8 pocketId, u16 pocketPos) static void SwapItemSlots(struct ItemSlot *a, struct ItemSlot *b) { struct ItemSlot temp; - SWAP(*a, *b, temp); + SWAP(*a, *b, temp); } void CompactItemsInBagPocket(struct BagPocket *bagPocket) |