Fix KRTexturePNG::getExtension, which was returning tga rather than png.
Some checks failed
CMake on multiple platforms / build (Release, cl, cl, windows-latest) (push) Has been cancelled
CMake on multiple platforms / build (Release, clang, clang++, macos-latest) (push) Has been cancelled
CMake on multiple platforms / build (Release, clang, clang++, ubuntu-latest) (push) Has been cancelled
CMake on multiple platforms / build (Release, gcc, g++, ubuntu-latest) (push) Has been cancelled

This commit is contained in:
2026-03-31 22:06:18 -07:00
parent b73290ffd6
commit a7506c556c

View File

@@ -175,7 +175,7 @@ VkFormat KRTexturePNG::getFormat() const
std::string KRTexturePNG::getExtension() std::string KRTexturePNG::getExtension()
{ {
return "tga"; return "png";
} }
int KRTexturePNG::getFaceCount() const int KRTexturePNG::getFaceCount() const