From 3729fe29b862a8b1d58967c45942535e7087b73b Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Wed, 28 Jan 2026 22:05:14 -0600 Subject: Add basic directional light --- src/input.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/input.c') 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); } -- cgit