@ -114,7 +114,7 @@ public class ByteConverter {
bites[i] = 0b0;
}
for (int i = maxSize - bytes.length; i < maxSize; i++) {
bites[i] = bytes[i];
bites[i] = bytes[i - maxSize + bytes.length];
if (i > maxSize){//break if over the limit
break;