From 1dbb3c8c9cf76eb19a93d9beeed9bcde7422ed28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 9 Jan 2012 19:10:43 +0100 Subject: [PATCH] TGAImporter: doc/debug output fixes. --- src/Plugins/TGAImporter/TGAImporter.cpp | 2 +- src/Plugins/TGAImporter/TGAImporter.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Plugins/TGAImporter/TGAImporter.cpp b/src/Plugins/TGAImporter/TGAImporter.cpp index 8d341ad84..315540565 100644 --- a/src/Plugins/TGAImporter/TGAImporter.cpp +++ b/src/Plugins/TGAImporter/TGAImporter.cpp @@ -48,7 +48,7 @@ bool TGAImporter::open(std::istream& in) { colorFormat = ColorFormat::BGRA; break; default: - Error() << "TGATexture: unsupported bits-per-pixel:" << (int) header.bpp; + Error() << "TGAImporter: unsupported bits-per-pixel:" << (int) header.bpp; return false; } diff --git a/src/Plugins/TGAImporter/TGAImporter.h b/src/Plugins/TGAImporter/TGAImporter.h index b3507d1d3..279596689 100644 --- a/src/Plugins/TGAImporter/TGAImporter.h +++ b/src/Plugins/TGAImporter/TGAImporter.h @@ -50,7 +50,7 @@ class TGAImporter: public AbstractImporter { unsigned short beginY; /**< @brief Image y origin */ unsigned short width; /**< @brief Image width */ unsigned short height; /**< @brief Image height */ - GLbyte bpp; /**< @brief Bits per pixel (8 16, 24, 32) */ + GLbyte bpp; /**< @brief Bits per pixel (8, 16, 24, 32) */ GLbyte descriptor; /**< @brief Image descriptor */ }; #pragma pack(8)