Evas DDS: Fix clang warning

This one was almost a real catch by clang. Too bad we don't actually
support DXT3.
This commit is contained in:
Jean-Philippe Andre 2015-04-21 18:54:27 +09:00
parent 6637e7cda9
commit 64ca10bcf6
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ evas_image_load_file_head_dds(void *loader_data,
case FOURCC('D', 'X', 'T', '3'):
loader->format = EVAS_COLORSPACE_RGBA_S3TC_DXT3;
prop->alpha = EINA_TRUE;
prop->cspaces = cspaces_s3tc_dxt5;
prop->cspaces = cspaces_s3tc_dxt3;
break;
case FOURCC('D', 'X', 'T', '4'):
loader->format = EVAS_COLORSPACE_RGBA_S3TC_DXT4;