Fixed some padding in comments

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2025-02-04 20:29:32 +0100
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2025-02-04 20:29:32 +0100
Commit 2129e874560cd3488e325cf707244c6607d77736 (patch)
-rw-r--r-- main.c 12
1 files changed, 6 insertions, 6 deletions
diff --git a/main.c b/main.c
...
32
} path_components;
32
} path_components;
33
  
33
  
34
const char *type_labels[] = {
34
const 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
  
39
const char *compression_labels[] = {
39
const 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
  
46
path_components extract_path_components(const char *filepath) {
46
path_components extract_path_components(const char *filepath) {
...