mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 07:12:40 +02:00
fix uninitialized read
This commit is contained in:
parent
06436e6a7d
commit
c5eb9c03d5
1 changed files with 1 additions and 1 deletions
2
interface/src/avatar/MyAvatar.h
Executable file → Normal file
2
interface/src/avatar/MyAvatar.h
Executable file → Normal file
|
@ -2603,7 +2603,7 @@ private:
|
|||
bool _enableDebugDrawIKChains { false };
|
||||
bool _enableDebugDrawDetailedCollision { false };
|
||||
|
||||
mutable bool _cauterizationNeedsUpdate; // do we need to scan children and update their "cauterized" state?
|
||||
mutable bool _cauterizationNeedsUpdate { false }; // do we need to scan children and update their "cauterized" state?
|
||||
|
||||
AudioListenerMode _audioListenerMode;
|
||||
glm::vec3 _customListenPosition;
|
||||
|
|
Loading…
Reference in a new issue