]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Quaternions.h
Add link to the website in the README
[lugaru.git] / Source / Quaternions.h
index 4e96bc70f6873e88d044573ec34731395ce11378..3b1ff4677dbfbb3e75d255bd10b7e844d5ab5d19 100644 (file)
@@ -23,11 +23,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #ifndef _QUATERNIONS_H_
 #define _QUATERNIONS_H_
 
-#ifndef WIN32
-#pragma mark -
-#endif
-
-//#include "Carbon.h"
 #include "math.h"
 #include "PhysicsMath.h"
 #include "gamegl.h"
@@ -255,7 +250,7 @@ inline float fast_sqrt (register float arg)
         return 0.0;
 
     asm {
-        frsqrte                result, arg                     // Calculate Square root
+        frsqrte     result, arg         // Calculate Square root
     }
 
     // Newton Rhapson iterations.