Another bug fix

git-svn-id: https://zxing.googlecode.com/svn/trunk@188 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2008-02-14 19:42:59 +00:00
parent bbe423c7c2
commit 739192b101

View file

@ -217,7 +217,7 @@ final class DecodedBitStreamParser {
int nextValue = bytes[i + 1] & 0xFF;
if ((value & 0x1) == 0) {
// if even,
if (nextValue >= 0x9F && nextValue <= 0x7C) {
if (nextValue >= 0x9F && nextValue <= 0xFC) {
return SHIFT_JIS;
}
} else {