[Scummvm-cvs-logs] SF.net SVN: scummvm:[44318] scummvm/trunk/engines/sci/engine/kmath.cpp

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Fri Sep 25 00:10:39 CEST 2009


Revision: 44318
          http://scummvm.svn.sourceforge.net/scummvm/?rev=44318&view=rev
Author:   fingolfin
Date:     2009-09-24 22:10:39 +0000 (Thu, 24 Sep 2009)

Log Message:
-----------
SCI: Fix spelling

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/kmath.cpp

Modified: scummvm/trunk/engines/sci/engine/kmath.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/kmath.cpp	2009-09-24 21:37:54 UTC (rev 44317)
+++ scummvm/trunk/engines/sci/engine/kmath.cpp	2009-09-24 22:10:39 UTC (rev 44318)
@@ -129,7 +129,7 @@
 	double cosval = cos(angle * PI / 180.0);
 
 	if ((cosval < 0.0001) && (cosval > -0.0001)) {
-		warning("Attepted division by zero");
+		warning("Attempted division by zero");
 		return make_reg(0, 0);
 	} else
 		return make_reg(0, (int16)(value / cosval));
@@ -141,7 +141,7 @@
 	double sinval = sin(angle * PI / 180.0);
 
 	if ((sinval < 0.0001) && (sinval > -0.0001)) {
-		warning("Attepted division by zero");
+		warning("Attempted division by zero");
 		return make_reg(0, 0);
 	} else
 		return make_reg(0, (int16)(value / sinval));


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