pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] r3085 - trunk/pingus/src/math


From: jsalmon3
Subject: [Pingus-CVS] r3085 - trunk/pingus/src/math
Date: Wed, 5 Sep 2007 05:08:17 +0200

Author: jsalmon3
Date: 2007-09-05 05:08:14 +0200 (Wed, 05 Sep 2007)
New Revision: 3085

Modified:
   trunk/pingus/src/math/vector3f.cpp
Log:
Fixed warning

Modified: trunk/pingus/src/math/vector3f.cpp
===================================================================
--- trunk/pingus/src/math/vector3f.cpp  2007-09-05 02:57:43 UTC (rev 3084)
+++ trunk/pingus/src/math/vector3f.cpp  2007-09-05 03:08:14 UTC (rev 3085)
@@ -34,7 +34,7 @@
 {
 }
 
-Vector3f::Vector3f(const Vector2i& old) : x(int(old.x)), y(int(old.y)), z(0)
+Vector3f::Vector3f(const Vector2i& old) : x(float(old.x)), y(float(old.y)), 
z(0)
 {
 }
 





reply via email to

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