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:28:07 -0500

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

Modified files:
        src/video      : linedraw.c 

Log message:
        fix small typo

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




reply via email to

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