Backends: Glut: Fix comparison operator precedence.

features/potocpav-newer-lines-2
Rokas Kupstys ago%!(EXTRA string=3 years) committed by ocornut
parent 1e18da5c38
commit 6315716f23
  1. 2
      backends/imgui_impl_glut.cpp

@ -269,7 +269,7 @@ void ImGui_ImplGLUT_MouseFunc(int glut_button, int state, int x, int y)
if (glut_button == GLUT_LEFT_BUTTON) button = 0;
if (glut_button == GLUT_RIGHT_BUTTON) button = 1;
if (glut_button == GLUT_MIDDLE_BUTTON) button = 2;
if (button != -1 && state == GLUT_DOWN || state == GLUT_UP)
if (button != -1 && (state == GLUT_DOWN || state == GLUT_UP))
io.AddMouseButtonEvent(button, state == GLUT_DOWN);
}

Loading…
Cancel
Save