mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 10:03:45 +01:00
Remove unsupported extensions from list in tile.cpp
This commit is contained in:
parent
80d12dbedb
commit
28c98f9fa5
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user