From 2b4b3bbf1808f56be685b934d7edb8f99486e5af Mon Sep 17 00:00:00 2001 From: Luflosi Date: Thu, 16 Jul 2020 20:00:15 +0200 Subject: [PATCH] GLFW: Null: Fix typos in workarea retrieval From upstream: https://github.com/glfw/glfw/commit/6c031af2452669be3d05b44857ad2daf0491cad9. --- glfw/null_monitor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glfw/null_monitor.c b/glfw/null_monitor.c index 0571e20b7..efd132da5 100644 --- a/glfw/null_monitor.c +++ b/glfw/null_monitor.c @@ -90,9 +90,9 @@ void _glfwPlatformGetMonitorWorkarea(_GLFWmonitor* monitor UNUSED, const GLFWvidmode mode = getVideoMode(); if (xpos) - *xpos = 10; + *xpos = 0; if (ypos) - ypos = 0; + *ypos = 10; if (width) *width = mode.width; if (height)