[Tux4kids-commits] r1665 - tuxtype/trunk/src

David Bruce dbruce-guest at alioth.debian.org
Fri Nov 20 19:53:29 UTC 2009


Author: dbruce-guest
Date: 2009-11-20 19:53:29 +0000 (Fri, 20 Nov 2009)
New Revision: 1665

Modified:
   tuxtype/trunk/src/titlescreen.c
Log:
Correction of output message if user-specific word list path not found

Modified: tuxtype/trunk/src/titlescreen.c
===================================================================
--- tuxtype/trunk/src/titlescreen.c	2009-11-20 19:19:20 UTC (rev 1664)
+++ tuxtype/trunk/src/titlescreen.c	2009-11-20 19:53:29 UTC (rev 1665)
@@ -1288,7 +1288,7 @@
   sprintf(wordPath,"%s/words", settings.var_data_path);
   if (!CheckFile(wordPath))
   {
-    fprintf(stderr, "chooseWordList() -  path \"%s\" not found\n", settings.var_data_path);
+    fprintf(stderr, "chooseWordList() -  path \"%s\" not found\n", wordPath);
   }
   else
   {
@@ -1342,7 +1342,7 @@
   sprintf(wordPath,"%s/words", settings.user_settings_path);
   if (!CheckFile(wordPath))
   {
-    fprintf(stderr, "chooseWordList() -  path \"%s\" not found\n", settings.user_settings_path);
+    fprintf(stderr, "chooseWordList() -  path \"%s\" not found\n", wordPath);
   }
   else
   {




More information about the Tux4kids-commits mailing list