.cosmetics

git-svn-id: svn://ultimatepp.org/upp/trunk@8806 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-08-09 16:47:49 +00:00
parent c1a14aa3f2
commit e53bdf2fb2

View file

@ -7,7 +7,6 @@ Vector<Image> UnpackImlData(const void *ptr, int len)
Vector<Image> img;
String data = ZDecompress(ptr, len);
const char *s = data;
int version = 0;
while(s + 6 * 2 + 1 <= data.End()) {
ImageBuffer ib(Peek16le(s + 1), Peek16le(s + 3));
int q = byte(*s) >> 6;