Fix copy-and-paste mistake in compact unihex logic
This commit is contained in:
parent
e9cb602ab7
commit
6df33005a7
|
|
@ -29,7 +29,7 @@ public class CompactUnihexContents {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static short extractShort(long compressed, int off) {
|
private static short extractShort(long compressed, int off) {
|
||||||
return (byte)((compressed >> (off * 16)) & 0xFF);
|
return (short)((compressed >> (off * 16)) & 0xFFFF);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class Bytes implements UnihexProvider.LineData {
|
public static class Bytes implements UnihexProvider.LineData {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user