mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-01 13:36:40 +00:00
Fix pipeline errors
This commit is contained in:
parent
a41c9240d9
commit
0b1e6a2b59
2 changed files with 2 additions and 2 deletions
|
@ -237,7 +237,7 @@ public:
|
||||||
{
|
{
|
||||||
CellRef refr;
|
CellRef refr;
|
||||||
refr.load(esm);
|
refr.load(esm);
|
||||||
assert(refr.mIndexedRefID == "PlayerSaveGame");
|
assert(refr.mIndexedRefId == "PlayerSaveGame");
|
||||||
mContext->mPlayer.mObject.mPosition = refr.mPos;
|
mContext->mPlayer.mObject.mPosition = refr.mPos;
|
||||||
|
|
||||||
ESM::CreatureStats& cStats = mContext->mPlayer.mObject.mCreatureStats;
|
ESM::CreatureStats& cStats = mContext->mPlayer.mObject.mCreatureStats;
|
||||||
|
|
|
@ -1347,7 +1347,7 @@ bool CharacterController::updateWeaponState(CharacterState idle)
|
||||||
if (isPersistentAnimPlaying())
|
if (isPersistentAnimPlaying())
|
||||||
return forcestateupdate;
|
return forcestateupdate;
|
||||||
|
|
||||||
float complete;
|
float complete = 0.f;
|
||||||
bool animPlaying = false;
|
bool animPlaying = false;
|
||||||
ESM::WeaponType::Class weapclass = getWeaponType(mWeaponType)->mWeaponClass;
|
ESM::WeaponType::Class weapclass = getWeaponType(mWeaponType)->mWeaponClass;
|
||||||
if(getAttackingOrSpell())
|
if(getAttackingOrSpell())
|
||||||
|
|
Loading…
Reference in a new issue