summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/main.c b/main.c
index 4442f5e..331dd40 100644
--- a/main.c
+++ b/main.c
@@ -348,15 +348,12 @@ void convert_blp_file(path_components *path, bool verbose) {
case 0: // DXT1
decode_dxt_image(image_data, header.width, header.height, 1, path, verbose);
break;
-
case 1: // DXT3
decode_dxt_image(image_data, header.width, header.height, 3, path, verbose);
break;
-
case 7: // DXT5
decode_dxt_image(image_data, header.width, header.height, 5, path, verbose);
break;
-
default:
printf("Unsupported alpha type: %d\n", header.alpha_type);
break;