]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
fix a wrong print in parsing.qc test
authorWolfgang (Blub) Bumiller <blub@speed.at>
Sun, 19 Aug 2012 14:41:45 +0000 (16:41 +0200)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Sun, 19 Aug 2012 14:41:45 +0000 (16:41 +0200)
data/parsing.qc

index 3c039e58f23b794530b426f101ad987f3cb47d9c..d106a1cf2f728d313d06f724dcd62de955225fb9 100644 (file)
@@ -61,7 +61,7 @@ void() main = {
     b = a += 7;
     print("adding\n");
     print3("a = ", ftos(a), "\n");
-    print3("b = ", ftos(a), "\n");
+    print3("b = ", ftos(b), "\n");
 
     print3("memb = ", ftos(pawn.memb), "\n");
     pawn.memb += -1;