From 6c031af2452669be3d05b44857ad2daf0491cad9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Camilla=20L=C3=B6wy?= Date: Mon, 13 Jul 2020 19:43:13 +0200 Subject: [PATCH] Null: Fix typos in workarea retrieval --- src/null_monitor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/null_monitor.c b/src/null_monitor.c index 7271e810..2590c84e 100644 --- a/src/null_monitor.c +++ b/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)