mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Make compile with MS-VC6
This commit is contained in:
@ -743,14 +743,15 @@ int emf_plot(struct zint_symbol *symbol) {
|
||||
}
|
||||
|
||||
/* Make image rectangles, circles, hexagons */
|
||||
for (this_row = 0; this_row < symbol->rows; this_row++) {
|
||||
for (this_row = 0; this_row < symbol->rows; this_row++) {
|
||||
float row_posn;
|
||||
|
||||
if (symbol->row_height[this_row] == 0) {
|
||||
row_height = large_bar_height;
|
||||
} else {
|
||||
row_height = symbol->row_height[this_row];
|
||||
}
|
||||
float row_posn = 0;
|
||||
row_posn = 0;
|
||||
for (i = 0; i < this_row; i++) {
|
||||
if (symbol->row_height[i] == 0) {
|
||||
row_posn += large_bar_height;
|
||||
|
Reference in New Issue
Block a user