From 4b1947fe448c8cc96849c6a8ded2481e8a07afb1 Mon Sep 17 00:00:00 2001 From: Anna Wiggins Date: Thu, 23 Jun 2011 12:37:43 -0400 Subject: [PATCH] simple comment update --- drawutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drawutils.cpp b/drawutils.cpp index dc72005..2a747aa 100644 --- a/drawutils.cpp +++ b/drawutils.cpp @@ -61,7 +61,7 @@ void DrawUtils::draw_line(SDL_Surface* dest, Sint16 x1, Sint16 y1, Sint16 x2, Si len = MathUtils::distance(x1,y1,x2,y2); - // changing dx and dy's meanings. Now they represent the amount we move + // dx and dy represent the amount we move // each step in our drawing loop dx = static_cast(x2-x1) / len; dy = static_cast(y2-y1) / len;