mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 22:23:51 +00:00
Fix visual glitch happening when closing inventory while sneaking
(bug #1255)
This commit is contained in:
parent
c7f2cfeca0
commit
ce7aa96371
1 changed files with 1 additions and 2 deletions
|
@ -364,10 +364,9 @@ void RenderingManager::update (float duration, bool paused)
|
||||||
|
|
||||||
static const int i1stPersonSneakDelta = MWBase::Environment::get().getWorld()->getStore().get<ESM::GameSetting>()
|
static const int i1stPersonSneakDelta = MWBase::Environment::get().getWorld()->getStore().get<ESM::GameSetting>()
|
||||||
.find("i1stPersonSneakDelta")->getInt();
|
.find("i1stPersonSneakDelta")->getInt();
|
||||||
if(isSneaking && !(isSwimming || isInAir))
|
if(!paused && isSneaking && !(isSwimming || isInAir))
|
||||||
mCamera->setSneakOffset(i1stPersonSneakDelta);
|
mCamera->setSneakOffset(i1stPersonSneakDelta);
|
||||||
|
|
||||||
|
|
||||||
mOcclusionQuery->update(duration);
|
mOcclusionQuery->update(duration);
|
||||||
|
|
||||||
mRendering.update(duration);
|
mRendering.update(duration);
|
||||||
|
|
Loading…
Reference in a new issue