Issue 2471: fix issue with picking out wrong maximum white for multiple white levels

This commit is contained in:
torger 2014-08-25 20:39:55 +02:00
parent a6f803f98d
commit 916e42bcef

View File

@ -244,7 +244,7 @@ skip_block: ;
if (this->get_white(c) != this->get_white(0)) {
multiple_whites = true;
if (this->get_white(c) > largest_white) {
largest_white = this->get_white(0);
largest_white = this->get_white(c);
}
}
}