|
|
|
@ -556,8 +556,8 @@ static long getPenaltyScore(const uint8_t qrcode[]) {
|
|
|
|
|
|
|
|
|
|
// Adjacent modules in row having same color
|
|
|
|
|
for (int y = 0; y < qrsize; y++) {
|
|
|
|
|
bool colorX;
|
|
|
|
|
for (int x = 0, runX; x < qrsize; x++) {
|
|
|
|
|
bool colorX = false;
|
|
|
|
|
for (int x = 0, runX = -1; x < qrsize; x++) {
|
|
|
|
|
if (x == 0 || getModule(qrcode, x, y) != colorX) {
|
|
|
|
|
colorX = getModule(qrcode, x, y);
|
|
|
|
|
runX = 1;
|
|
|
|
@ -572,8 +572,8 @@ static long getPenaltyScore(const uint8_t qrcode[]) {
|
|
|
|
|
}
|
|
|
|
|
// Adjacent modules in column having same color
|
|
|
|
|
for (int x = 0; x < qrsize; x++) {
|
|
|
|
|
bool colorY;
|
|
|
|
|
for (int y = 0, runY; y < qrsize; y++) {
|
|
|
|
|
bool colorY = false;
|
|
|
|
|
for (int y = 0, runY = -1; y < qrsize; y++) {
|
|
|
|
|
if (y == 0 || getModule(qrcode, x, y) != colorY) {
|
|
|
|
|
colorY = getModule(qrcode, x, y);
|
|
|
|
|
runY = 1;
|
|
|
|
|