From e7d50455764112d09b3a74f284070b041f9cc419 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Mon, 14 Aug 2000 06:53:30 +0000 Subject: [PATCH] oops bugs in line backend for imlb - fixed :) SVN revision: 3116 --- legacy/evas/src/evas_imlib_routines.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/evas/src/evas_imlib_routines.c b/legacy/evas/src/evas_imlib_routines.c index 484323d21d..d243220b06 100644 --- a/legacy/evas/src/evas_imlib_routines.c +++ b/legacy/evas/src/evas_imlib_routines.c @@ -439,7 +439,7 @@ void __evas_imlib_line_draw(Display *disp, Window win, if (!up->image) up->image = imlib_create_image(up->w, up->h); imlib_context_set_image(up->image); - imlib_image_draw_line(x1 - up->x, y1 - up->x, x2 - up->x, y2 - up->y, 0); + imlib_image_draw_line(x1 - up->x, y1 - up->y, x2 - up->x, y2 - up->y, 0); } } }