mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Merge pull request #16019 from sethalves/bugz-1158
BUGZ-1158: fix uninitialized variables
This commit is contained in:
commit
166d29bd3b
1 changed files with 2 additions and 2 deletions
|
@ -78,7 +78,7 @@ public:
|
|||
bool accurate { true };
|
||||
QUuid entityID;
|
||||
float distance { 0.0f };
|
||||
BoxFace face;
|
||||
BoxFace face { UNKNOWN_FACE };
|
||||
glm::vec3 intersection;
|
||||
glm::vec3 surfaceNormal;
|
||||
QVariantMap extraInfo;
|
||||
|
@ -94,7 +94,7 @@ public:
|
|||
QUuid entityID;
|
||||
float distance { 0.0f };
|
||||
float parabolicDistance { 0.0f };
|
||||
BoxFace face;
|
||||
BoxFace face { UNKNOWN_FACE };
|
||||
glm::vec3 intersection;
|
||||
glm::vec3 surfaceNormal;
|
||||
QVariantMap extraInfo;
|
||||
|
|
Loading…
Reference in a new issue