aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Textures.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Textures.cpp b/src/Textures.cpp
index 3c1bcca..9e22c87 100644
--- a/src/Textures.cpp
+++ b/src/Textures.cpp
@@ -70,6 +70,6 @@ GLuint loadTexture(const char* filename_, GLenum minFilter,
gluBuild2DMipmaps(GL_TEXTURE_2D, internal_format, width, height,
pixel_format, GL_UNSIGNED_BYTE, data);
- // stbi_image_free(data);
+ stbi_image_free(data);
return tex;
}