diff --git a/core/src/com/riiablo/io/nio/ByteInput.java b/core/src/com/riiablo/io/nio/ByteInput.java index 7eb8972f..d33c9907 100644 --- a/core/src/com/riiablo/io/nio/ByteInput.java +++ b/core/src/com/riiablo/io/nio/ByteInput.java @@ -61,6 +61,7 @@ public class ByteInput { * Skips n bytes by discarding them. */ public ByteInput skipBytes(int bytes) { + incrementBitsRead((long) bytes * Byte.SIZE); buffer.skipBytes(bytes); return this; }