From 2263acad65be7c881e81f2dc845d4acaefb9603e Mon Sep 17 00:00:00 2001 From: sanine-a Date: Tue, 15 Dec 2020 21:16:10 -0600 Subject: remove spurious debug message --- src/texture.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') diff --git a/src/texture.c b/src/texture.c index 2bcc1e2..32240c6 100644 --- a/src/texture.c +++ b/src/texture.c @@ -385,10 +385,8 @@ static void configure_mag_filter(lua_State* L, void* data) honey_texture_params* params = (honey_texture_params*) data; const char* str = lua_tostring(L, -1); - if (strcmp(str, "nearest") == 0) { - printf("MAG FILTER NEAREST\n"); + if (strcmp(str, "nearest") == 0) params->mag_filter = GL_NEAREST; - } else if (strcmp(str, "linear") == 0) params->mag_filter = GL_LINEAR; else -- cgit v1.2.1