mirror of
https://github.com/raysan5/raylib.git
synced 2026-08-13 02:35:20 +00:00
Fix window Y position reading X in RGFW move callback (#6044)
This commit is contained in:
@@ -613,7 +613,7 @@ static void RGFW_cb_windowmovefunc(const RGFW_event *e)
|
||||
if (e->common.win != platform.window) return;
|
||||
|
||||
CORE.Window.position.x = platform.window->x;
|
||||
CORE.Window.position.y = platform.window->x;
|
||||
CORE.Window.position.y = platform.window->y;
|
||||
}
|
||||
static void RGFW_cb_keycharfunc(const RGFW_event *e)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user