X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=tests%2Fvec_ops.qc;h=d06d5799dd0e39819756ffe048010e1d997ce34d;hb=66d908f39bc2f1543e5fa9cd8dc3111686b48ce3;hp=29ecbae5004286ddad860fcf5639bbf8e678ed01;hpb=64661f54ea4b13657301a975db10aeff6245610f;p=xonotic%2Fgmqcc.git diff --git a/tests/vec_ops.qc b/tests/vec_ops.qc index 29ecbae..d06d579 100644 --- a/tests/vec_ops.qc +++ b/tests/vec_ops.qc @@ -8,5 +8,5 @@ void main(vector v) { print(vtos(v & 16), "\n"); print(vtos(v | '25 42 51'), "\n"); print(vtos(v & '25 42 51'), "\n"); - print(vtos('1 2 3' >< '3 2 1')); + print(vtos(v >< '3 2 1')); }