summaryrefslogtreecommitdiff
path: root/src/game/q_shared.h
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2001-08-07 21:14:01 +0000
committerTim Angus <tim@ngus.net>2001-08-07 21:14:01 +0000
commitbf3bef5499e762aa5eee6e3e0935f7a913225a75 (patch)
tree5ae6a6912e7dac634ae6388512e2f6e127b68621 /src/game/q_shared.h
parentd1a82b792471283809914926c8d88d4ddecb026d (diff)
Moved WW smoothing to client side. snarfed glibc acos
Diffstat (limited to 'src/game/q_shared.h')
-rw-r--r--src/game/q_shared.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/q_shared.h b/src/game/q_shared.h
index 8814b664..b5fd5889 100644
--- a/src/game/q_shared.h
+++ b/src/game/q_shared.h
@@ -630,7 +630,7 @@ void ByteToDir( int b, vec3_t dir );
typedef struct {
float v[3];
} vec3struct_t;
-#define VectorCopy(a,b) *(vec3struct_t *)b=*(vec3struct_t *)a;
+#define VectorCopy(a,b) *(vec3struct_t *)b=*(vec3struct_t *)a
#define ID_INLINE static
#endif
#endif