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)