diff --git a/source/de/anomic/ymage/ymageBMPParser.java b/source/de/anomic/ymage/ymageBMPParser.java index 58da68995..14ef88bdc 100644 --- a/source/de/anomic/ymage/ymageBMPParser.java +++ b/source/de/anomic/ymage/ymageBMPParser.java @@ -170,7 +170,7 @@ public class ymageBMPParser { int n = 0; int b; for (int rows = 0; rows < height; rows++) { - for (int columns = 0; columns < width; columns = columns + 4) { + for (int columns = 0; columns < width; columns = columns + 8) { b = ((int) s[offset + n] & 0xff); n++; image.setRGB(columns, (height - rows - 1), colortable.colorindex[(b & 0x80) >> 7]);