mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-01 20:36:40 +00:00
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; | ^
This commit is contained in:
parent
f456978cc3
commit
262b31cf08
1 changed files with 0 additions and 2 deletions
|
@ -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…
Reference in a new issue