fix: remove printf debugging

This commit is contained in:
orangerot 2025-10-14 04:15:52 +02:00
parent bc34748107
commit 06aaf6e0ba

1
main.c
View file

@ -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,