This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project gfxprim.git.
The branch, generate has been updated via 2f57806a0c4f164121638af4f28a43c73b3bf4c5 (commit) from e5413870bee8686f02e4123c1db175ba61821220 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/2f57806a0c4f164121638af4f28a43c73b3bf...
commit 2f57806a0c4f164121638af4f28a43c73b3bf4c5 Author: Cyril Hrubis metan@ucw.cz Date: Sat Oct 15 23:41:18 2011 +0200
This one was actually correct before.
diff --git a/libs/gfx/algo/Line.algo.h b/libs/gfx/algo/Line.algo.h index 3eccb3a..afc37dc 100644 --- a/libs/gfx/algo/Line.algo.h +++ b/libs/gfx/algo/Line.algo.h @@ -66,7 +66,7 @@ void FN_NAME(CONTEXT_T context, int x0, int y0, int x1, int y1, int error = deltax / 2; int y = y0, x; int ystep = (y0 < y1) ? 1 : -1; - for (x = x0; x < x1; x++) { + for (x = x0; x <= x1; x++) { if (steep) PUTPIXEL(context, y, x, pixval); -----------------------------------------------------------------------
Summary of changes: libs/gfx/algo/Line.algo.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.