X11: Fix copypaste errors

Related to #1322.
master
Camilla Löwy ago%!(EXTRA string=6 years)
parent d82e7b5cb1
commit 4f14c1e776
  1. 6
      src/x11_monitor.c

@ -354,11 +354,11 @@ void _glfwPlatformGetMonitorWorkarea(_GLFWmonitor* monitor, int* xpos, int* ypos
if (xpos)
*xpos = extents[0];
if (xpos)
if (ypos)
*ypos = extents[1];
if (xpos)
if (width)
*width = extents[2];
if (xpos)
if (height)
*height = extents[3];
XFree(extents);

Loading…
Cancel
Save