summaryrefslogtreecommitdiff
path: root/fxbarcode/pdf417/BC_PDF417.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fxbarcode/pdf417/BC_PDF417.cpp')
-rw-r--r--fxbarcode/pdf417/BC_PDF417.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fxbarcode/pdf417/BC_PDF417.cpp b/fxbarcode/pdf417/BC_PDF417.cpp
index d0ecaccf55..084f3a8810 100644
--- a/fxbarcode/pdf417/BC_PDF417.cpp
+++ b/fxbarcode/pdf417/BC_PDF417.cpp
@@ -506,7 +506,6 @@ void CBC_PDF417::encodeLowLevel(WideString fullCodewords,
int32_t idx = 0;
for (int32_t y = 0; y < r; y++) {
int32_t cluster = y % 3;
- logic->startRow();
encodeChar(START_PATTERN, 17, logic->getCurrentRow());
int32_t left;
int32_t right;
@@ -534,6 +533,7 @@ void CBC_PDF417::encodeLowLevel(WideString fullCodewords,
encodeChar(pattern, 17, logic->getCurrentRow());
encodeChar(STOP_PATTERN, 18, logic->getCurrentRow());
}
+ logic->nextRow();
}
}