stratagus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Stratagus-CVS] stratagus/src/video linedraw.c


From: Nehal Mistry
Subject: [Stratagus-CVS] stratagus/src/video linedraw.c
Date: Tue, 02 Dec 2003 00:31:58 -0500

CVSROOT:        /cvsroot/stratagus
Module name:    stratagus
Branch:         
Changes by:     Nehal Mistry <address@hidden>   03/12/02 00:31:58

Modified files:
        src/video      : linedraw.c 

Log message:
        fix another small typo

Patches:
Index: stratagus/src/video/linedraw.c
diff -u stratagus/src/video/linedraw.c:1.60 stratagus/src/video/linedraw.c:1.61
--- stratagus/src/video/linedraw.c:1.60 Tue Dec  2 00:28:07 2003
+++ stratagus/src/video/linedraw.c      Tue Dec  2 00:31:58 2003
@@ -27,7 +27,7 @@
 //      Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 //      02111-1307, USA.
 //
-//     $Id: linedraw.c,v 1.60 2003/12/02 05:28:07 nehalmistry Exp $
+//     $Id: linedraw.c,v 1.61 2003/12/02 05:31:58 nehalmistry Exp $
 
 //@{
 
@@ -512,7 +512,7 @@
 
 global void VideoDrawPixelClip(Uint32 color, int x, int y)
 {
-    if (x >= ClipX1 && y >= ClipY1 && x <= ClipX2 && y <= ClipX2) {
+    if (x >= ClipX1 && y >= ClipY1 && x <= ClipX2 && y <= ClipY2) {
        VideoDrawPixel(color, x, y);
     }
 }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]