Minor format tweaks

This commit is contained in:
raysan5 2021-06-05 12:33:05 +02:00
parent 6445200a93
commit e95d8bc655
8 changed files with 60 additions and 36 deletions

View file

@ -425,7 +425,7 @@ bool ExportImage(Image image, const char *fileName)
RL_FREE(fileData);
}
#else
if (false) {}
if (false) { }
#endif
#if defined(SUPPORT_FILEFORMAT_BMP)
else if (IsFileExtension(fileName, ".bmp")) success = stbi_write_bmp(fileName, image.width, image.height, channels, imgData);