aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2007-12-05 23:28:30 +0000
committerFilippos Karapetis2007-12-05 23:28:30 +0000
commitee5fc9675a6871504d35043aa9be5c0bad200868 (patch)
treebcd9983f7db8f857834f229cd5ebbfaf789ff6a1
parent0070e3da126f72262037a0d75d11e05e940f0a06 (diff)
downloadscummvm-rg350-ee5fc9675a6871504d35043aa9be5c0bad200868.tar.gz
scummvm-rg350-ee5fc9675a6871504d35043aa9be5c0bad200868.tar.bz2
scummvm-rg350-ee5fc9675a6871504d35043aa9be5c0bad200868.zip
Remove now obsolete comment
svn-id: r29729
-rw-r--r--engines/agi/picture.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/engines/agi/picture.cpp b/engines/agi/picture.cpp
index a6eb52b079..30e7435908 100644
--- a/engines/agi/picture.cpp
+++ b/engines/agi/picture.cpp
@@ -68,15 +68,6 @@ static void drawProc(int x, int y, int c, void *data) {
((PictureMgr *)data)->putVirtPixel(x, y);
}
-/**
- * Draw an AGI line.
- * A line drawing routine sent by Joshua Neal, modified by Stuart George
- * (fixed >>2 to >>1 and some other bugs like x1 instead of y1, etc.)
- * @param x1 x coordinate of start point
- * @param y1 y coordinate of start point
- * @param x2 x coordinate of end point
- * @param y2 y coordinate of end point
- */
void PictureMgr::drawLine(int x1, int y1, int x2, int y2) {
/* CM: Do clipping */
#define clip(x, y) if ((x)>=(y)) (x)=(y)