2013-09-26 17:14:40 +02:00

18 lines
425 B
Plaintext

$NetBSD: patch-ab,v 1.1 2005/12/18 20:26:03 dillo Exp $
--- graphics.c.orig 2005-07-31 15:56:04.000000000 +0200
+++ graphics.c
@@ -370,10 +370,11 @@ void os_drawline (int x1, int y1, int x2
int x_step, y_step;
int err, delta_err;
int x, y;
+ gboolean steep;
animationCost++;
- gboolean steep = abs (y2 - y1) > abs (x2 - x1);
+ steep = abs (y2 - y1) > abs (x2 - x1);
if (steep)
{