aboutsummaryrefslogtreecommitdiff
path: root/src/textures.c
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2015-02-09 18:29:32 +0100
committerraysan5 <raysan5@gmail.com>2015-02-09 18:29:32 +0100
commite1353b9f7d5f29b4706b305245946b2c5cab6a12 (patch)
tree43351957efc2efeaddbc010dcc44233f4afedf2d /src/textures.c
parent47827ddda1402dcf8bb65fe2f523ce4fd4d8032e (diff)
downloadraylib-e1353b9f7d5f29b4706b305245946b2c5cab6a12.tar.gz
raylib-e1353b9f7d5f29b4706b305245946b2c5cab6a12.zip
Removed some TODO already done
Diffstat (limited to 'src/textures.c')
-rw-r--r--src/textures.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/textures.c b/src/textures.c
index e8bf6088..768ead78 100644
--- a/src/textures.c
+++ b/src/textures.c
@@ -103,8 +103,6 @@ Image LoadImage(const char *fileName)
// Force loading to 4 components (RGBA)
byte *imgData = stbi_load(fileName, &imgWidth, &imgHeight, &imgBpp, 4);
- // TODO: Check if file could be loaded! (imgData == NULL)?
-
if (imgData != NULL)
{
// Convert array to pixel array for working convenience