Another bug fix
authorsrowen <srowen@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Thu, 14 Feb 2008 19:42:59 +0000 (19:42 +0000)
committersrowen <srowen@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Thu, 14 Feb 2008 19:42:59 +0000 (19:42 +0000)
git-svn-id: http://zxing.googlecode.com/svn/trunk@188 59b500cc-1b3d-0410-9834-0bbf25fbcc57

core/src/com/google/zxing/qrcode/decoder/DecodedBitStreamParser.java

index f271ac3..e69ca8d 100644 (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 {