[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [11527] branches/2-44-stable/blender/ source: branches/2-44-stable

Diego Borghetti (Plumiferos) bdiego at gmail.com
Thu Aug 9 17:05:41 CEST 2007


Revision: 11527
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=11527
Author:   bdiego
Date:     2007-08-09 17:05:41 +0200 (Thu, 09 Aug 2007)

Log Message:
-----------
branches/2-44-stable

Merge from trunk:
	revision 11514
	revision 11524

Revision Links:
--------------
    http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=11514
    http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=11524

Modified Paths:
--------------
    branches/2-44-stable/blender/source/blender/src/editipo.c
    branches/2-44-stable/blender/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp

Modified: branches/2-44-stable/blender/source/blender/src/editipo.c
===================================================================
--- branches/2-44-stable/blender/source/blender/src/editipo.c	2007-08-09 13:46:38 UTC (rev 11526)
+++ branches/2-44-stable/blender/source/blender/src/editipo.c	2007-08-09 15:05:41 UTC (rev 11527)
@@ -1924,8 +1924,8 @@
 		bezt= icu->bezt;
 		for(a=0; a<=icu->totvert; a++, bezt++) {
 			
-			/* no double points */
-			if(a<icu->totvert && IS_EQ(bezt->vec[1][0], x)) {
+			/* no double points - threshold to determine this should be good enough */
+			if(a<icu->totvert && IS_EQT(bezt->vec[1][0], x, 0.00001)) {
 				*(bezt)= beztr;
 				break;
 			}

Modified: branches/2-44-stable/blender/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp
===================================================================
--- branches/2-44-stable/blender/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp	2007-08-09 13:46:38 UTC (rev 11526)
+++ branches/2-44-stable/blender/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp	2007-08-09 15:05:41 UTC (rev 11527)
@@ -522,7 +522,7 @@
 		printf("error: window size too small.\n");
 	}
 	
-	if (error || argc == 1) 
+	if (error )
 	{
 		usage(argv[0]);
 		return 0;





More information about the Bf-blender-cvs mailing list