summaryrefslogtreecommitdiffhomepage
path: root/src/rtextures.c
diff options
context:
space:
mode:
authorRay <[email protected]>2022-09-30 23:07:29 +0200
committerRay <[email protected]>2022-09-30 23:07:29 +0200
commit178a356cb4130f942f051f5669f46ebcb7f438bc (patch)
tree333884bcbf6e8d60f6a61e530d59c20d50970bc8 /src/rtextures.c
parentf14955512f4c47e9b77cd5e17b969a43543ec705 (diff)
downloadraylib-178a356cb4130f942f051f5669f46ebcb7f438bc.tar.gz
raylib-178a356cb4130f942f051f5669f46ebcb7f438bc.zip
minor tweaks
Diffstat (limited to 'src/rtextures.c')
-rw-r--r--src/rtextures.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rtextures.c b/src/rtextures.c
index 41bd3e18..ceca1a30 100644
--- a/src/rtextures.c
+++ b/src/rtextures.c
@@ -402,7 +402,6 @@ Image LoadImageFromMemory(const char *fileType, const unsigned char *fileData, i
#if defined(SUPPORT_FILEFORMAT_DDS)
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);
}
#endif