pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] r2890 - branches/pingus_sdl/src/gui


From: nehalmistry
Subject: [Pingus-CVS] r2890 - branches/pingus_sdl/src/gui
Date: Mon, 13 Aug 2007 22:59:25 +0200

Author: nehalmistry
Date: 2007-08-13 22:59:21 +0200 (Mon, 13 Aug 2007)
New Revision: 2890

Modified:
   branches/pingus_sdl/src/gui/display.cpp
Log:
fix last commit

Modified: branches/pingus_sdl/src/gui/display.cpp
===================================================================
--- branches/pingus_sdl/src/gui/display.cpp     2007-08-13 20:46:47 UTC (rev 
2889)
+++ branches/pingus_sdl/src/gui/display.cpp     2007-08-13 20:59:21 UTC (rev 
2890)
@@ -247,7 +247,7 @@
 
   // vertical line
   if (sx == dx) {
-       if ((sx < clipx1 && dx < clipx1) || (sx > clipx2 && dx > clipx2)) {
+    if (sx < clipx1 || sx > clipx2 || (sy < clipy1 && dy < clipy1) || (sy > 
clipy2 && dy > clipy2)) {
       return;
     }
     clip(sy, clipy1, clipy2);
@@ -262,7 +262,7 @@
 
   // horizontal
   if (sy == dy) {
-       if ((sy < clipy1 && dy < clipy1) || (sy > clipy2 && dy > clipy2)) {
+    if (sy < clipy1 || sy > clipy2 || (sx < clipx1 && dx < clipx1) || (sx > 
clipx2 && dx > clipx2)) {
       return;
     }
     clip(sx, clipx1, clipx2);





reply via email to

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