1
0
mirror of git://projects.qi-hardware.com/antorcha.git synced 2024-11-01 07:24:58 +02:00

fw/antorcha.c: don't overrun image by one line in test mode

This commit is contained in:
Werner Almesberger 2012-06-20 16:48:16 -03:00
parent b7d80f1340
commit ab00d8e231

View File

@ -24,7 +24,7 @@ static struct sweep sweep = {
.wait_ticks = 100000, /* 100 ms */
.pixel_ticks = 5000, /* 5 ms */
.left = 0,
.right = MAX_LINES,
.right = MAX_LINES-1,
.forward = 1,
};