summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authororangerot <orangerot@orangerot.dev>2025-10-14 04:15:52 +0200
committerorangerot <orangerot@orangerot.dev>2025-10-14 04:15:52 +0200
commit06aaf6e0bab748c2b491c8a56715c9ac74f1e36e (patch)
tree9ef80c66046f8ff7d52687314b709967d8056d57
parentbc34748107f1ed8608f5a665f34577764cc65bbb (diff)
fix: remove printf debugging
-rw-r--r--main.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/main.c b/main.c
index 78af96d..1207254 100644
--- a/main.c
+++ b/main.c
@@ -69,7 +69,6 @@ void glfw_key_callback(GLFWwindow* window, int key, int scancode, int action, in
void glfw_cursor_position_callback(GLFWwindow* window, double xpos, double ypos) {
(void) window;
- printf("%f %f\n", xpos, ypos);
float scale_x = fmin(
(float) SCR_HEIGHT / SCR_WIDTH * (float) canvas.height / canvas.width,