Skip to content
Snippets Groups Projects
Commit ce380a4e authored by andreykproductengine's avatar andreykproductengine
Browse files

SL-11138 Bitmaps format support bug

parent 0df49188
No related branches found
No related tags found
No related merge requests found
...@@ -181,7 +181,7 @@ bool LLImageBMP::updateData() ...@@ -181,7 +181,7 @@ bool LLImageBMP::updateData()
} }
} }
else else
if( 12 <= header.mSize && 64 <= header.mSize ) if( 12 <= header.mSize && header.mSize <= 64 )
{ {
setLastError("OS/2 2.x BMP files are not supported"); setLastError("OS/2 2.x BMP files are not supported");
return false; return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment