diff options
author | ROllerozxa <temporaryemail4meh+github@gmail.com> | 2021-09-15 12:12:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 11:12:24 +0100 |
commit | 6fedee16f098549ffaee188b02b777239513abc3 (patch) | |
tree | 081521a2ca8c94d717d9797228e68bd68635805d /src/client/tile.cpp | |
parent | 719a12ecac1c5363612e0c230eae411bdb3fe058 (diff) | |
download | minetest-6fedee16f098549ffaee188b02b777239513abc3.tar.gz minetest-6fedee16f098549ffaee188b02b777239513abc3.tar.bz2 minetest-6fedee16f098549ffaee188b02b777239513abc3.zip |
Readd TGA to the list of valid texture formats. (#11598)
Diffstat (limited to 'src/client/tile.cpp')
-rw-r--r-- | src/client/tile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/tile.cpp b/src/client/tile.cpp index 15ae5472d..a31e3aca1 100644 --- a/src/client/tile.cpp +++ b/src/client/tile.cpp @@ -81,7 +81,7 @@ 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", NULL }; + const char *extensions[] = { "png", "jpg", "bmp", "tga", NULL }; // If there is no extension, assume PNG if (removeStringEnd(path, extensions).empty()) path = path + ".png"; |