]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - libs/splines/math_quaternion.h
[q3map2] Unwind script stack in case of script loading error.
[xonotic/netradiant.git] / libs / splines / math_quaternion.h
index b7754f08006f219ad6733a717307a12c89196c49..b33f4425d28c2b6b660df07058c1ff1d56cd480b 100644 (file)
@@ -1,5 +1,5 @@
 /*
-   Copyright (C) 1999-2007 id Software, Inc. and contributors.
+   Copyright (C) 1999-2006 Id Software, Inc. and contributors.
    For a list of contributors, see the accompanying CONTRIBUTORS file.
 
    This file is part of GtkRadiant.
@@ -157,7 +157,7 @@ inline int operator==( quat_t a, quat_t b ) {
 }
 
 inline int operator!=( quat_t a, quat_t b ) {
-       return ( ( a.x != b.x ) || ( a.y != b.y ) || ( a.z != b.z ) && ( a.w != b.w ) );
+       return ( ( a.x != b.x ) || ( a.y != b.y ) || (( a.z != b.z ) && ( a.w != b.w )) );
 }
 
 inline float quat_t::Length( void ) {