From 392d17c56c8746ecc7b0f4a21eeeec7e6a74d1f6 Mon Sep 17 00:00:00 2001 From: Yves Rizoud Date: Thu, 2 Jul 2009 22:12:24 +0000 Subject: [PATCH] Fixed the clamping of Grad rectangle (I hadn't tested at all :-/ ) git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@897 416bcca6-2ee7-4201-b75f-2eb2f807beb1 --- operatio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/operatio.c b/operatio.c index 4cc6b202..d19a583c 100644 --- a/operatio.c +++ b/operatio.c @@ -4788,8 +4788,8 @@ void Grad_rectangle_12_9(void) Operation_push(start_x); Operation_push(start_y); - Operation_push(Paintbrush_X); - Operation_push(Paintbrush_Y); + Operation_push(cursor_x); + Operation_push(cursor_y); } void Grad_rectangle_0_9(void)