[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [36836] trunk/blender/source/blender/ blenlib/intern/rct.c: Fix print_rctf not printing y max correct.

Brecht Van Lommel brechtvanlommel at pandora.be
Mon May 23 16:51:32 CEST 2011


Revision: 36836
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=36836
Author:   blendix
Date:     2011-05-23 14:51:31 +0000 (Mon, 23 May 2011)
Log Message:
-----------
Fix print_rctf not printing y max correct.

Modified Paths:
--------------
    trunk/blender/source/blender/blenlib/intern/rct.c

Modified: trunk/blender/source/blender/blenlib/intern/rct.c
===================================================================
--- trunk/blender/source/blender/blenlib/intern/rct.c	2011-05-23 13:37:18 UTC (rev 36835)
+++ trunk/blender/source/blender/blenlib/intern/rct.c	2011-05-23 14:51:31 UTC (rev 36836)
@@ -241,7 +241,7 @@
 
 void print_rctf(const char *str, rctf *rect)
 {
-	printf("%s: xmin %.3f, xmax %.3f, ymin %.3f, ymax %.3f (%.3fx%.3f)\n", str, rect->xmin, rect->xmax, rect->ymin, rect->xmax, rect->xmax - rect->xmin, rect->ymax - rect->ymin);
+	printf("%s: xmin %.3f, xmax %.3f, ymin %.3f, ymax %.3f (%.3fx%.3f)\n", str, rect->xmin, rect->xmax, rect->ymin, rect->ymax, rect->xmax - rect->xmin, rect->ymax - rect->ymin);
 }
 
 void print_rcti(const char *str, rcti *rect)




More information about the Bf-blender-cvs mailing list