From 3abc11611e1d1d93f1cf794df28879de3571bd01 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 18 Sep 2007 20:16:33 +0000 Subject: Code formatting fixes svn-id: r28945 --- engines/agi/picture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/agi/picture.cpp') diff --git a/engines/agi/picture.cpp b/engines/agi/picture.cpp index 006348f433..7df391104d 100644 --- a/engines/agi/picture.cpp +++ b/engines/agi/picture.cpp @@ -99,7 +99,7 @@ void PictureMgr::drawLine(int x1, int y1, int x2, int y2) { int i, x, y, deltaX, deltaY, stepX, stepY, errorX, errorY, detdelta; /* CM: Do clipping */ -#define clip(x, y) if((x)>=(y)) (x)=(y) +#define clip(x, y) if ((x)>=(y)) (x)=(y) clip(x1, _width - 1); clip(x2, _width - 1); clip(y1, _height - 1); -- cgit v1.2.3