diff options
Diffstat (limited to 'graphics/jpeg.cpp')
-rw-r--r-- | graphics/jpeg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/jpeg.cpp b/graphics/jpeg.cpp index 1c7ad64646..fbc81b5db2 100644 --- a/graphics/jpeg.cpp +++ b/graphics/jpeg.cpp @@ -198,7 +198,7 @@ bool JPEG::readJFIF() { byte majorVersion = _str->readByte(); byte minorVersion = _str->readByte(); if(majorVersion != 1 || minorVersion != 1) - warning("JPEG::readJFIF() Non-v1.1 JPEGs may not be handled correctly!"); + warning("JPEG::readJFIF() Non-v1.1 JPEGs may not be handled correctly"); /* byte densityUnits = */ _str->readByte(); /* uint16 xDensity = */ _str->readUint16BE(); /* uint16 yDensity = */ _str->readUint16BE(); |