Spelt / ZXing.Delphi

ZXing Barcode Scanning object Pascal Library for Delphi VCL and Delphi Firemonkey
Apache License 2.0
471 stars 206 forks source link

UPCEANExtension2 decode error #144

Closed JedrzejczykRobert closed 1 year ago

JedrzejczykRobert commented 1 year ago

file: ZXing.OneD.UPCEANExtension2Support line: 144

current:

resultString.Append('0' + IntToStr(bestMatch mod 10));

should be:

resultString.Append(IntToStr(bestMatch mod 10));