Index: libcfa/src/vector.hfa
===================================================================
--- libcfa/src/vector.hfa	(revision af0bf717a77bfa4e23a4aed6ede389abab2b7627)
+++ libcfa/src/vector.hfa	(revision 11881953ca54519ac6075af439004447ec006cda)
@@ -11,5 +11,5 @@
 // Constructors
 
-void ?{}( vec2 & v, float x, float y) {
+void ?{}(vec2& v, float x, float y) {
     v.[x, y] = [x, y];
 }
@@ -27,4 +27,7 @@
 void ?=?(vec2& vec, const vec2& other) with (vec) {
     [x,y] = other.[x,y];
+}
+void ?=?(vec2& vec, zero_t) with (vec) {
+    [x,y] = [0,0];
 }
 
