]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
remove semicolons
authorMartin Taibr <taibr.martin@gmail.com>
Fri, 30 Nov 2018 20:42:41 +0000 (21:42 +0100)
committerMartin Taibr <taibr.martin@gmail.com>
Fri, 30 Nov 2018 20:42:41 +0000 (21:42 +0100)
qcsrc/lib/deglobalization.qh

index 88999805749df5edccb27b3b720ac4467cbe25f7..fb45126531cf54421086a2c6efd30f2affa4df60 100644 (file)
@@ -15,8 +15,8 @@
 //    - this is the only used function that both sets and gets the globals (aim does too but isn't used in our code)
 
 #define NEW_VECS(...) EVAL(OVERLOAD(NEW_VECS, __VA_ARGS__))
-#define NEW_VECS_3(forward, right, up) vector forward = '0 0 0'; vector right = '0 0 0'; vector up = '0 0 0';
-#define NEW_VECS_4(forward, right, up, origin) NEW_VECS_3(forward, right, up); vector origin = '0 0 0';
+#define NEW_VECS_3(forward, right, up) vector forward = '0 0 0'; vector right = '0 0 0'; vector up = '0 0 0'
+#define NEW_VECS_4(forward, right, up, origin) NEW_VECS_3(forward, right, up); vector origin = '0 0 0'
 
 // convenience for deglobalized code - don't use these just to hide that globals are still used
 #define CLEAR_V_GLOBALS() v_forward = VEC_NAN; v_right = VEC_NAN; v_up = VEC_NAN;