Skip to content

Commit

Permalink
Fix INVENTORY_GetItemSaveGfxInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
Lectem committed Dec 7, 2024
1 parent f40a09e commit ed1bdb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/D2Common/src/D2Inventory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2690,7 +2690,7 @@ void __stdcall INVENTORY_GetItemSaveGfxInfo(D2UnitStrc* pPlayer, uint8_t* pCompo
{
nComponent = COMPOSIT_LEFTHAND;
}
else if (nComponent < NUM_COMPONENTS)
if (nComponent < NUM_COMPONENTS)
{
pComponents[nComponent] = nIndex;

Expand Down

0 comments on commit ed1bdb1

Please sign in to comment.