mirror of
https://github.com/zxing/zxing.git
synced 2024-11-09 20:44:03 -08:00
Another bug fix
git-svn-id: https://zxing.googlecode.com/svn/trunk@188 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
bbe423c7c2
commit
739192b101
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue