mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 15:15:31 +00:00
Fix code that I forgot to uncomment (thanks coverity)
This commit is contained in:
parent
3d3b37324d
commit
ebdd5dc993
1 changed files with 1 additions and 1 deletions
|
@ -459,7 +459,7 @@ void NpcAnimation::updateParts()
|
||||||
};
|
};
|
||||||
static const size_t slotlistsize = sizeof(slotlist)/sizeof(slotlist[0]);
|
static const size_t slotlistsize = sizeof(slotlist)/sizeof(slotlist[0]);
|
||||||
|
|
||||||
bool wasArrowAttached = 0;//(mAmmunition.get() != NULL);
|
bool wasArrowAttached = (mAmmunition.get() != NULL);
|
||||||
|
|
||||||
MWWorld::InventoryStore& inv = mPtr.getClass().getInventoryStore(mPtr);
|
MWWorld::InventoryStore& inv = mPtr.getClass().getInventoryStore(mPtr);
|
||||||
for(size_t i = 0;i < slotlistsize && mViewMode != VM_HeadOnly;i++)
|
for(size_t i = 0;i < slotlistsize && mViewMode != VM_HeadOnly;i++)
|
||||||
|
|
Loading…
Reference in a new issue