summaryrefslogtreecommitdiff
path: root/src/input.c
diff options
context:
space:
mode:
authorAaditya Dhruv <[email protected]>2026-01-28 22:05:14 -0600
committerAaditya Dhruv <[email protected]>2026-01-28 22:05:14 -0600
commit3729fe29b862a8b1d58967c45942535e7087b73b (patch)
treeb444560dff8d1b3480856484b2ab5bb7f02d9d00 /src/input.c
parentc289fc917a370cb421b25e44c6b28e21b58d7296 (diff)
Add basic directional light
Diffstat (limited to 'src/input.c')
-rw-r--r--src/input.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/input.c b/src/input.c
index be240be..b4dde18 100644
--- a/src/input.c
+++ b/src/input.c
@@ -49,7 +49,6 @@ void input_handle(struct engine *engine) {
int y;
SDL_GetRelativeMouseState(&x, &y);
if (x != 0 || y != 0) {
- fprintf(stderr, "X: %d, Y %d\n", x, y);
vec2 offset = { x, y };
camera_rotate(engine->camera, offset);
}