[Tux4kids-commits] r1713 - tuxmath/trunk/src

Jesús Manuel Mager Hois fongog-guest at alioth.debian.org
Sat Jan 2 20:11:42 UTC 2010


Author: fongog-guest
Date: 2010-01-02 20:11:42 +0000 (Sat, 02 Jan 2010)
New Revision: 1713

Modified:
   tuxmath/trunk/src/factoroids.c
Log:
Now you need 49999 score to win in Factoroids and Fractoroids activity.



Modified: tuxmath/trunk/src/factoroids.c
===================================================================
--- tuxmath/trunk/src/factoroids.c	2009-12-31 22:34:23 UTC (rev 1712)
+++ tuxmath/trunk/src/factoroids.c	2010-01-02 20:11:42 UTC (rev 1713)
@@ -487,7 +487,7 @@
   shift_pressed = 0;
   shoot_pressed = 0;
 
-  score = 1;
+  score = 0;
   wave = 0;
   xdead = 0;
   ydead = 0;
@@ -2175,7 +2175,7 @@
   {
     return GAME_OVER_LOST;
   }
-  if(score>=10000 || wave >= 20 )
+  if(score>=49999 || wave >= 20 )
   {
     return GAME_OVER_WON;
   }




More information about the Tux4kids-commits mailing list