X11: Fix undefined behavior in bit shift of int

Closes #1951
This commit is contained in:
Slemmie 2021-08-20 06:41:59 +02:00 committed by Camilla Löwy
parent 8f9ff8503e
commit b54fb0af10

View File

@ -1267,7 +1267,7 @@ static void processEvent(XEvent *event)
// (the server never sends a timestamp of zero)
// NOTE: Timestamp difference is compared to handle wrap-around
Time diff = event->xkey.time - window->x11.keyPressTimes[keycode];
if (diff == event->xkey.time || (diff > 0 && diff < (1 << 31)))
if (diff == event->xkey.time || (diff > 0 && diff < ((Time)1 << 31)))
{
if (keycode)
_glfwInputKey(window, key, keycode, GLFW_PRESS, mods);