More GLM initialization fixes

This commit is contained in:
Alexander Bock
2020-02-10 01:18:27 +01:00
parent 24ce773da9
commit 9491f73803
59 changed files with 123 additions and 120 deletions
+3 -3
View File
@@ -44,9 +44,9 @@ public:
// Stores the selected node, the cursor ID as well as the surface coordinates the
// cursor touched
struct SelectedBody {
size_t id;
SceneGraphNode* node;
glm::dvec3 coordinates;
size_t id = 0;
SceneGraphNode* node = nullptr;
glm::dvec3 coordinates = glm::dvec3(0.0);
};
DirectInputSolver();