diff options
| author | raysan5 <[email protected]> | 2020-05-07 18:08:35 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-05-07 18:08:35 +0200 |
| commit | d357b116fe91ed1c0bcca62cbf0e8b4638c3a31f (patch) | |
| tree | 90a2b75908507aeb3417ee8720542e5054d382a7 | |
| parent | 6fa6757a8bf90d4b2fd0ce82dace7c7223635efa (diff) | |
| download | raylib-d357b116fe91ed1c0bcca62cbf0e8b4638c3a31f.tar.gz raylib-d357b116fe91ed1c0bcca62cbf0e8b4638c3a31f.zip | |
Reviewed missing check for JPG
| -rw-r--r-- | src/textures.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/textures.c b/src/textures.c index 724dd5c3..d08ee950 100644 --- a/src/textures.c +++ b/src/textures.c @@ -202,6 +202,7 @@ Image LoadImage(const char *fileName) #if defined(SUPPORT_FILEFORMAT_PNG) || \ defined(SUPPORT_FILEFORMAT_BMP) || \ defined(SUPPORT_FILEFORMAT_TGA) || \ + defined(SUPPORT_FILEFORMAT_JPG) || \ defined(SUPPORT_FILEFORMAT_GIF) || \ defined(SUPPORT_FILEFORMAT_PIC) || \ defined(SUPPORT_FILEFORMAT_HDR) || \ |
