readUnsignedShort return undignedbyte
Closed this issue · 4 comments
In the #readUnsignedShort methods, we should use "readShort() & 0xFFFF" rather than "readShort() & 0xFF". I guess it's a typo. And sounds like
@OverRide
public void writeUnsignedShort(int offset, int v) {
writeUnsignedShort(offset, v);
}
should be
@OverRide
public void writeUnsignedShort(int offset, int v) {
writeShort(offset, v);
}
BTW, thanks for this great library.
You are right in both cases. Would you like to try pushing these changes?
I can, but i'm not family with GitHub. I need to figure out how to do it
just for changing couple lines. If you don't mind i can do it, and i may
need your guides.
On Aug 30, 2012 5:07 PM, "Peter Lawrey" notifications@github.com wrote:
You are right in both cases. Would you like to try pushing these changes?
—
Reply to this email directly or view it on GitHubhttps://github.com//issues/13#issuecomment-8174546.
This web site has surprisingly good documentation. It a bit of a pain to setup compared with subversion but once you have it works very well.
That appears to be fixed now.