Browse Source

Null: Fix typos in workarea retrieval

Camilla Löwy 5 years ago
parent
commit
6c031af245
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/null_monitor.c

+ 2 - 2
src/null_monitor.c

@@ -90,9 +90,9 @@ void _glfwPlatformGetMonitorWorkarea(_GLFWmonitor* monitor,
     const GLFWvidmode mode = getVideoMode();
 
     if (xpos)
-        *xpos = 10;
+        *xpos = 0;
     if (ypos)
-        ypos = 0;
+        *ypos = 10;
     if (width)
         *width = mode.width;
     if (height)