mirror of
https://github.com/zxing/zxing.git
synced 2025-01-12 19:57:27 -08:00
Issue 230
git-svn-id: https://zxing.googlecode.com/svn/trunk@1040 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
e1dd41a115
commit
46640620e9
|
@ -264,7 +264,7 @@ final class DecodedBitStreamParser {
|
|||
boolean lastWasPossibleDoubleByteStart = false;
|
||||
for (int i = 0; i < length && (canBeISO88591 || canBeShiftJIS); i++) {
|
||||
int value = bytes[i] & 0xFF;
|
||||
if (value == 0xC2 || value == 0xC3 && i < length - 1) {
|
||||
if ((value == 0xC2 || value == 0xC3) && i < length - 1) {
|
||||
// This is really a poor hack. The slightly more exotic characters people might want to put in
|
||||
// a QR Code, by which I mean the Latin-1 supplement characters (e.g. u-umlaut) have encodings
|
||||
// that start with 0xC2 followed by [0xA0,0xBF], or start with 0xC3 followed by [0x80,0xBF].
|
||||
|
|
Loading…
Reference in a new issue