Skip to content

Commit

Permalink
remove spurious unary plus
Browse files Browse the repository at this point in the history
  • Loading branch information
ixchow committed Sep 12, 2023
1 parent 52b921d commit f090094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PlayMode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ void PlayMode::draw(glm::uvec2 const &drawable_size) {
glm::u8vec4(0x00, 0x00, 0x00, 0x00));
float ofs = 2.0f / drawable_size.y;
lines.draw_text("Mouse motion rotates camera; WASD moves; escape ungrabs mouse",
glm::vec3(-aspect + 0.1f * H + ofs, -1.0 + + 0.1f * H + ofs, 0.0),
glm::vec3(-aspect + 0.1f * H + ofs, -1.0 + 0.1f * H + ofs, 0.0),
glm::vec3(H, 0.0f, 0.0f), glm::vec3(0.0f, H, 0.0f),
glm::u8vec4(0xff, 0xff, 0xff, 0x00));
}
Expand Down

0 comments on commit f090094

Please sign in to comment.