diff dvdnav.c @ 6:5f319e02e333 src

Some cleaning up. changed exit(1) to assert(0) so they actually get seen by the user so that it helps developers more.
author jcdutton
date Sat, 06 Apr 2002 18:31:50 +0000
parents 99bed5d6db2f
children 7fdefafa624f
line wrap: on
line diff
--- a/dvdnav.c	Tue Apr 02 22:25:21 2002 +0000
+++ b/dvdnav.c	Sat Apr 06 18:31:50 2002 +0000
@@ -553,7 +553,8 @@
     return S_OK;
   }
 
-  if(self->expecting_nav_packet) {
+  if(self->expecting_nav_packet || 
+    (self->jumping) ) {
     dvdnav_nav_packet_event_t nav_event;
 
     /* Perform the jump if necessary (this is always a 
@@ -986,6 +987,10 @@
 
 /*
  * $Log$
+ * Revision 1.4  2002/04/06 18:31:50  jcdutton
+ * Some cleaning up.
+ * changed exit(1) to assert(0) so they actually get seen by the user so that it helps developers more.
+ *
  * Revision 1.3  2002/04/02 18:22:27  richwareham
  * Added reset patch from Kees Cook <kees@outflux.net>
  *