Do not increment i in this location

This commit is contained in:
NuclearW 2012-07-06 17:17:04 -04:00
parent 67738d811e
commit 63cf6e9b3a

View File

@ -76,7 +76,7 @@ public class PrimitiveChunkletStore implements ChunkletStore {
for(int i = 0; i < 8; i++) {
for(int j = 0; j < 8; j++) {
yColumn[j + (i * 8)] = (temp[++i] & 1 << j) != 0;
yColumn[j + (i * 8)] = (temp[i + 1] & 1 << j) != 0;
}
}