diff options
Diffstat (limited to 'gfx/models/obj.h')
-rw-r--r-- | gfx/models/obj.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gfx/models/obj.h b/gfx/models/obj.h index 9a2a30e..6db16c0 100644 --- a/gfx/models/obj.h +++ b/gfx/models/obj.h @@ -25,7 +25,7 @@ public: std::vector<glm::vec4> vertices; std::vector<glm::vec3> texCoords; std::vector<glm::vec3> normals; - using FaceElement = glm::vec<3, int>; + using FaceElement = glm::vec<3, unsigned int>; using Face = std::vector<FaceElement>; using Faces = std::vector<Face>; using Object = std::pair<std::string, Faces>; |