Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mohlek committed Aug 23, 2020
1 parent f48ba81 commit e2bae45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ int main(int argc, char** argv) {
glm::mat4 model = glm::mat4(1.0f);
model = glm::scale(model, glm::vec3(0.1f));
glm::mat4 view = glm::mat4(1.0f);
view = glm::translate(view, glm::vec3(0.0f, 0.0f, -100.0f))
view = glm::translate(view, glm::vec3(0.0f, 0.0f, -100.0f));

GLint uniformModel = program.getUniformLocation("model");
GLint uniformView = program.getUniformLocation("view");
Expand Down

0 comments on commit e2bae45

Please sign in to comment.