From a89f892640cf12f75c7ce18e6e88c70a8d3965ed Mon Sep 17 00:00:00 2001 From: Uneven Prankster Date: Sat, 23 Sep 2023 19:28:45 -0300 Subject: things can always be nicer :D --- assets/src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'assets/src/main.c') diff --git a/assets/src/main.c b/assets/src/main.c index 2a8ab80..188a7ee 100644 --- a/assets/src/main.c +++ b/assets/src/main.c @@ -18,8 +18,8 @@ void update(void) vec2 current_input = get_dir_input(); if(current_input.x != 0 || current_input.y != 0){ - position.x += current_input.x * 0.5f; - position.y += current_input.y * 0.5f; + position.x += current_input.x; + position.y += current_input.y; } set_active_shader(grayscale); -- cgit v1.2.3