Removed some TODO already done

This commit is contained in:
raysan5
2015-02-09 18:29:32 +01:00
parent 47827ddda1
commit e1353b9f7d
4 changed files with 20 additions and 22 deletions

View File

@ -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