changeset 144:19a31f4f57cb src

* fix TRACE output for play_PGC_PG * remove FIXME output for LinkTopPG, I have seen a disc which makes heavy use of this command and it works fine, so I think we can assume that our implementation is correct
author mroi
date Tue, 01 Apr 2003 11:35:39 +0000
parents 0b302ca31859
children 4d14c444c155
files vm.c
diffstat 1 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/vm.c	Tue Apr 01 11:30:56 2003 +0000
+++ b/vm.c	Tue Apr 01 11:35:39 2003 +0000
@@ -915,7 +915,7 @@
   link_t link_values;
   
 #ifdef TRACE
-  fprintf(MSG_OUT, "libdvdnav: play_PGC:");
+  fprintf(MSG_OUT, "libdvdnav: play_PGC_PG:");
   if((vm->state).domain != FP_DOMAIN) {
     fprintf(MSG_OUT, " (vm->state).pgcN (%i)\n", get_PGCN(vm));
   } else {
@@ -1214,7 +1214,6 @@
     case LinkTopPG:
       /* Link to Top of Program */
       /* BUTTON number:data1 */
-      fprintf(MSG_OUT, "libdvdnav: FIXME: LinkTopPG. This should start the current PG again.\n");
       if(link_values.data1 != 0)
 	(vm->state).HL_BTNN_REG = link_values.data1 << 10;
       link_values = play_PG(vm);
@@ -1808,6 +1807,12 @@
 
 /*
  * $Log$
+ * Revision 1.51  2003/04/01 11:35:39  mroi
+ * * fix TRACE output for play_PGC_PG
+ * * remove FIXME output for LinkTopPG, I have seen a disc which makes heavy use of
+ *   this command and it works fine, so I think we can assume that our implementation
+ *   is correct
+ *
  * Revision 1.50  2003/03/29 12:21:15  mroi
  * dvd_read_name can be static and does not need the whole vm_t*
  *