mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-26 14:36:40 -04:00
Physics is not running while paused, so zero the stats for the async
thread instead of keeping whatever value was before the pause.
This commit is contained in:
parent
bc4047d815
commit
9d90e250cf
@ -1861,6 +1861,13 @@ namespace MWWorld
|
|||||||
{
|
{
|
||||||
doPhysics (duration, frameStart, frameNumber, stats);
|
doPhysics (duration, frameStart, frameNumber, stats);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// zero the async stats if we are paused
|
||||||
|
stats.setAttribute(frameNumber, "physicsworker_time_begin", 0);
|
||||||
|
stats.setAttribute(frameNumber, "physicsworker_time_taken", 0);
|
||||||
|
stats.setAttribute(frameNumber, "physicsworker_time_end", 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void World::updatePlayer()
|
void World::updatePlayer()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user