Browse Source

Added a note

Ray San 7 years ago
parent
commit
8f4fa5006b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/textures.c

+ 3 - 1
src/textures.c

@@ -567,8 +567,10 @@ void ExportImage(const char *fileName, Image image)
 {
     // NOTE: Getting Color array as RGBA unsigned char values
     unsigned char *imgData = (unsigned char *)GetImageData(image);
+    
+    // NOTE: SavePNG() not supported by some platforms: PLATFORM_WEB, PLATFORM_ANDROID
     SavePNG(fileName, imgData, image.width, image.height, 4);
-    // FIXME ^ this fails on PLATFORM_WEB, what should we do?
+
     free(imgData);
 }