[Scummvm-cvs-logs] SF.net SVN: scummvm:[53429] scummvm/trunk/engines/sword25/math/vertex.h

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Wed Oct 13 17:06:14 CEST 2010


Revision: 53429
          http://scummvm.svn.sourceforge.net/scummvm/?rev=53429&view=rev
Author:   thebluegr
Date:     2010-10-13 15:06:14 +0000 (Wed, 13 Oct 2010)

Log Message:
-----------
SWORD25: Oops, atan2() takes two arguments

Modified Paths:
--------------
    scummvm/trunk/engines/sword25/math/vertex.h

Modified: scummvm/trunk/engines/sword25/math/vertex.h
===================================================================
--- scummvm/trunk/engines/sword25/math/vertex.h	2010-10-13 15:00:51 UTC (rev 53428)
+++ scummvm/trunk/engines/sword25/math/vertex.h	2010-10-13 15:06:14 UTC (rev 53429)
@@ -60,7 +60,7 @@
 #define floorf(x)	((float)floor(x))
 #define fabsf(x)	((float)fabs(x))
 #define sqrtf(x)	((float)sqrt(x))
-#define atan2f(x)	((float)atan2(x))
+#define atan2f(x,y)	((float)atan2(x,y))
 #endif
 
 namespace Lua {


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list