From f09009413c2fe9b8dc532ad2b172788cdb57dcd8 Mon Sep 17 00:00:00 2001 From: "Jim McCann (on silkmoth)" Date: Tue, 12 Sep 2023 11:01:02 -0400 Subject: [PATCH] remove spurious unary plus --- PlayMode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PlayMode.cpp b/PlayMode.cpp index cd94325..1d83844 100644 --- a/PlayMode.cpp +++ b/PlayMode.cpp @@ -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)); }