Remove double space

This commit is contained in:
ubkp 2023-12-14 19:08:56 -03:00
parent c0cf6fa320
commit 8deca2f62e

View File

@ -620,8 +620,8 @@ Vector2 GetWindowPosition(void)
{ {
// NOTE: Returned position is relative to the current monitor where the browser window is located // NOTE: Returned position is relative to the current monitor where the browser window is located
Vector2 position = { 0, 0 }; Vector2 position = { 0, 0 };
position.x = (float)EM_ASM_INT( { return window.screenX; }, 0); position.x = (float)EM_ASM_INT( { return window.screenX; }, 0);
position.y = (float)EM_ASM_INT( { return window.screenY; }, 0); position.y = (float)EM_ASM_INT( { return window.screenY; }, 0);
return position; return position;
} }