aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/main.c b/main.c
index f4a324f..4442f5e 100644
--- a/main.c
+++ b/main.c
@@ -32,15 +32,15 @@ typedef struct {
32} path_components; 32} path_components;
33 33
34const char *type_labels[] = { 34const char *type_labels[] = {
35 "JPG", // Index 0 35 "JPG", // Index 0
36 "BLP/DXTC/Uncompressed" // Index 1 36 "BLP/DXTC/Uncompressed" // Index 1
37}; 37};
38 38
39const char *compression_labels[] = { 39const char *compression_labels[] = {
40 "Invalid", // Index 0 (Unused) 40 "Invalid", // Index 0 (Unused)
41 "BLP", // Index 1 41 "BLP", // Index 1
42 "DXTC", // Index 2 42 "DXTC", // Index 2
43 "Uncompressed" // Index 3 43 "Uncompressed" // Index 3
44}; 44};
45 45
46path_components extract_path_components(const char *filepath) { 46path_components extract_path_components(const char *filepath) {