Remove unsupported extensions from list in tile.cpp

This commit is contained in:
hecktest 2021-07-29 21:47:08 +02:00
parent 80d12dbedb
commit 28c98f9fa5
1 changed files with 2 additions and 6 deletions

View File

@ -81,12 +81,8 @@ static bool replace_ext(std::string &path, const char *ext)
std::string getImagePath(std::string path)
{
// A NULL-ended list of possible image extensions
const char *extensions[] = {
"png", "jpg", "bmp", "tga",
"pcx", "ppm", "psd", "wal", "rgb",
NULL
};
// If there is no extension, add one
const char *extensions[] = { "png", "jpg", "bmp", NULL };
// If there is no extension, assume PNG
if (removeStringEnd(path, extensions).empty())
path = path + ".png";
// Check paths until something is found to exist