From 8deca2f62ef17c8e5c41cc6a245e8c6ed7c645ec Mon Sep 17 00:00:00 2001 From: ubkp <118854183+ubkp@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:08:56 -0300 Subject: [PATCH] Remove double space --- src/platforms/rcore_web.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platforms/rcore_web.c b/src/platforms/rcore_web.c index 7b482b9b1..6387420f9 100644 --- a/src/platforms/rcore_web.c +++ b/src/platforms/rcore_web.c @@ -620,8 +620,8 @@ Vector2 GetWindowPosition(void) { // NOTE: Returned position is relative to the current monitor where the browser window is located Vector2 position = { 0, 0 }; - position.x = (float)EM_ASM_INT( { return window.screenX; }, 0); - position.y = (float)EM_ASM_INT( { return window.screenY; }, 0); + position.x = (float)EM_ASM_INT( { return window.screenX; }, 0); + position.y = (float)EM_ASM_INT( { return window.screenY; }, 0); return position; }