summaryrefslogtreecommitdiff
path: root/src/image.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/image.cpp')
-rw-r--r--src/image.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image.cpp b/src/image.cpp
index cf5e12d..1203df2 100644
--- a/src/image.cpp
+++ b/src/image.cpp
@@ -48,7 +48,7 @@ static ts_image _ts_load_image(unsigned char* data, size_t size) {
int w = 0;
int h = 0;
GLuint id = 0;
- bool ret = _ts_load_texture(data, size, &id, &w, &h);
+ _ts_load_texture(data, size, &id, &w, &h);
return ts_image {id, w, h};
}