aboutsummaryrefslogtreecommitdiff
path: root/assets/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'assets/src/main.c')
-rw-r--r--assets/src/main.c4
1 files changed, 2 insertions, 2 deletions
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);