diff options
author | pommicket <pommicket@gmail.com> | 2023-02-28 14:13:06 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-02-28 14:13:06 -0500 |
commit | 5e92dac7b8ff9d60bfa3dcc69c3f77663a01aea4 (patch) | |
tree | bfc1faa98f94930dbb6946fc0f0f8d249c5087bd /gl.c | |
parent | 11300a7e247eeb28c101f43a51d8dbfde0479eaa (diff) |
new settings system seems to be working
Diffstat (limited to 'gl.c')
-rw-r--r-- | gl.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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); } |