summaryrefslogtreecommitdiff
path: root/gl.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-02-28 14:13:06 -0500
committerpommicket <pommicket@gmail.com>2023-02-28 14:13:06 -0500
commit5e92dac7b8ff9d60bfa3dcc69c3f77663a01aea4 (patch)
treebfc1faa98f94930dbb6946fc0f0f8d249c5087bd /gl.c
parent11300a7e247eeb28c101f43a51d8dbfde0479eaa (diff)
new settings system seems to be working
Diffstat (limited to 'gl.c')
-rw-r--r--gl.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gl.c b/gl.c
index 07871d7..4b41f42 100644
--- a/gl.c
+++ b/gl.c
@@ -65,7 +65,6 @@ void gl_rc_texture_decref(GlRcTexture **pt) {
GlRcTexture *t = *pt;
if (!t) return;
if (--t->ref_count == 0) {
- debug_println("Delete texture %u", t->texture);
glDeleteTextures(1, &t->texture);
free(t);
}