Update platform_raylib.c

isolation_bkp/dynres
Dominik Madarász 2021-08-29 16:20:00 +02:00
parent 936658056a
commit f804db82b7
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ void platform_input() {
mouse_pos.y -= 0.5f; mouse_pos.y -= 0.5f;
mouse_pos = Vector2Normalize(mouse_pos); mouse_pos = Vector2Normalize(mouse_pos);
x = mouse_pos.x; x = mouse_pos.x;
y = mouse_pos.y; y = -mouse_pos.y;
} }
game_action_send_keystate(x, y, use, sprint); game_action_send_keystate(x, y, use, sprint);