Fix clang warning: -Wunused-but-set-variable

apps/openmw/mwmechanics/spellcasting.cpp:45:13: warning: variable 'index' set but not used [-Wunused-but-set-variable]
   45 |         int index = -1;
      |             ^
pull/3236/head
elsid 9 months ago
parent f456978cc3
commit 262b31cf08
No known key found for this signature in database
GPG Key ID: 4DE04C198CBA7625

@ -42,10 +42,8 @@ namespace MWMechanics
{
const auto world = MWBase::Environment::get().getWorld();
std::map<MWWorld::Ptr, std::vector<ESM::IndexedENAMstruct>> toApply;
int index = -1;
for (const ESM::IndexedENAMstruct& effectInfo : effects.mList)
{
++index;
const ESM::MagicEffect* effect = world->getStore().get<ESM::MagicEffect>().find(effectInfo.mData.mEffectID);
if (effectInfo.mData.mRange != rangeType

Loading…
Cancel
Save