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

David Bruce dbruce-guest at alioth.debian.org
Mon Oct 12 18:49:29 UTC 2009


Author: dbruce-guest
Date: 2009-10-12 18:49:28 +0000 (Mon, 12 Oct 2009)
New Revision: 1580

Modified:
   tuxmath/trunk/src/game.c
Log:
Minor tweaking of print_current_quests()

Modified: tuxmath/trunk/src/game.c
===================================================================
--- tuxmath/trunk/src/game.c	2009-10-12 01:17:37 UTC (rev 1579)
+++ tuxmath/trunk/src/game.c	2009-10-12 18:49:28 UTC (rev 1580)
@@ -698,13 +698,13 @@
      printf("Comet %d - question %d:\t%s\n", i, comets[i].flashcard.question_id, comets[i].flashcard.formula_string);
 
   }
-  printf("--------------Test Comets-----------------\n");
+  printf("--------------Question Queue-----------------\n");
   for(i = 0; i < QUEST_QUEUE_SIZE; i++)
   {
     if(quest_queue[i].question_id != -1)
-      printf("Comet %d - question %d:\t%s\n", i, quest_queue[i].question_id, quest_queue[i].formula_string);
+      printf("quest_queue %d - question %d:\t%s\n", i, quest_queue[i].question_id, quest_queue[i].formula_string);
     else
-      printf("Comet %d:\tEmpty\n", i);
+      printf("quest_queue %d:\tEmpty\n", i);
   }
   printf("------------------------------------------\n");
 }




More information about the Tux4kids-commits mailing list