changeset 53:39bd4e386cbb src

Add some menu language printf's.
author jcdutton
date Thu, 04 Jul 2002 00:38:51 +0000
parents 4d9b8880e592
children cea44c0d638a
files vm.c
diffstat 1 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/vm.c	Wed Jul 03 02:41:31 2002 +0000
+++ b/vm.c	Thu Jul 04 00:38:51 2002 +0000
@@ -1722,6 +1722,14 @@
 	    (char)(lang >> 8), (char)(lang & 0xff),
  	    (char)(h->pgci_ut->lu[0].lang_code >> 8),
 	    (char)(h->pgci_ut->lu[0].lang_code & 0xff));
+    fprintf(stderr, "Menu Languages available: ");
+    for(i=0;i< h->pgci_ut->nr_of_lus;i++) {
+      fprintf(stderr, "%c%c ",
+ 	    (char)(h->pgci_ut->lu[0].lang_code >> 8),
+	    (char)(h->pgci_ut->lu[0].lang_code & 0xff));
+    }
+    fprintf(stderr, "\n");
+
     i = 0; /*  error? */
   }
   
@@ -1755,6 +1763,9 @@
 
 /*
  * $Log$
+ * Revision 1.22  2002/07/04 00:38:51  jcdutton
+ * Add some menu language printf's.
+ *
  * Revision 1.21  2002/07/03 02:41:31  jcdutton
  * Fix another long standing bug.
  * Now changing PGC will force a start at the first PG of the PGC.