minor tweaks

This commit is contained in:
Ray 2022-09-30 23:07:29 +02:00
parent f14955512f
commit 178a356cb4
2 changed files with 22 additions and 23 deletions

View file

@ -402,7 +402,6 @@ Image LoadImageFromMemory(const char *fileType, const unsigned char *fileData, i
#if defined(SUPPORT_FILEFORMAT_DDS) #if defined(SUPPORT_FILEFORMAT_DDS)
else if (strcmp(fileType, ".dds") == 0) else if (strcmp(fileType, ".dds") == 0)
{ {
int format = 0;
image.data = rl_load_dds_from_memory(fileData, dataSize, &image.width, &image.height, &image.format, &image.mipmaps); image.data = rl_load_dds_from_memory(fileData, dataSize, &image.width, &image.height, &image.format, &image.mipmaps);
} }
#endif #endif