diff options
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/tga.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/tga.cc b/src/render/tga.cc index 3584566..18236fa 100644 --- a/src/render/tga.cc +++ b/src/render/tga.cc @@ -74,7 +74,7 @@ TGA::image *TGA::load(const char *filename) f->read((void *)&bits, sizeof(GLubyte)); f->skip(length +1); - con_debug << " TGA loading " << width << "x" << height << " " << (int) bits << "bpp" << std::endl; + con_debug << " " << filename << " " << width << "x" << height << "x" << (int) bits << "bpp" << std::endl; if (imgType != TGA_RLE) { // Check for 24 or 32 Bit |