mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 02:03:57 +02:00
fix typo
This commit is contained in:
parent
b2e79a0157
commit
77c4362991
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ void PhysicsEngine::stepSimulation() {
|
|||
_numSubsteps += (uint32_t)numSubsteps;
|
||||
unlock();
|
||||
|
||||
if (_numSubsteps > 0) {
|
||||
if (numSubsteps > 0) {
|
||||
// This is step (3) which is done outside of stepSimulation() so we can lock _entityTree.
|
||||
//
|
||||
// Unfortunately we have to unlock the simulation (above) before we try to lock the _entityTree
|
||||
|
|
Loading…
Reference in a new issue