extns: Add .tga to the recognized image files

Add it to tyls as well
This commit is contained in:
Jean-Philippe Andre 2014-06-30 14:12:34 +09:00
parent 40b7eaf09f
commit 4012be784c
2 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,7 @@ const char *extn_img[] =
".cur", ".xcf", ".xcf.gz", ".arw", ".cr2", ".crw", ".dcr", ".dng", ".k25",
".kdc", ".erf", ".mrw", ".nef", ".nrf", ".nrw", ".orf", ".raw", ".rw2",
".pef", ".raf", ".sr2", ".srf", ".x3f", ".webp", ".ppt", ".pptx", ".odp",
".tgv",
".tgv", ".tga",
NULL
};

View File

@ -202,6 +202,8 @@ const Cmatch fmatch[] =
{ 5, 5, 5, 9, 9, 9, "*.ICO", NULL},
{ 5, 5, 5, 9, 9, 9, "*.pgm", NULL},
{ 5, 5, 5, 9, 9, 9, "*.PGM", NULL},
{ 5, 5, 5, 9, 9, 9, "*.tga", NULL},
{ 5, 5, 5, 9, 9, 9, "*.TGA", NULL},
{ 5, 5, 5, 9, 9, 9, "*.pbm", NULL},
{ 5, 5, 5, 9, 9, 9, "*.PBM", NULL},
{ 5, 5, 5, 9, 9, 9, "*.psd", NULL},