comparison highlight.c @ 136:5897ff629f7c src

reorganize mutual header inclusion to fix warnings when compiling with TRACE defined fix vm_jump_title_part to use correct title number (up to now the number was considered to be VTS-relative, which it is not)
author mroi
date Thu, 27 Mar 2003 15:12:26 +0000
parents bd8601b74c3d
children 175d5fef21e4
comparison
equal deleted inserted replaced
135:5204d4e4cd3b 136:5897ff629f7c
24 #ifdef HAVE_CONFIG_H 24 #ifdef HAVE_CONFIG_H
25 #include "config.h" 25 #include "config.h"
26 #endif 26 #endif
27 27
28 #include <assert.h> 28 #include <assert.h>
29 29 #include <dvdread/nav_types.h>
30 #include "dvdnav_internal.h" 30 #include "dvdnav_internal.h"
31
32 #include "vm.h"
33 #include <dvdread/nav_types.h>
34 31
35 /* 32 /*
36 #define BUTTON_TESTING 33 #define BUTTON_TESTING
37 */ 34 */
38 35
39 #ifdef BUTTON_TESTING 36 #ifdef BUTTON_TESTING
40 37
41 #include <dvdread/nav_print.h> 38 #include <dvdread/nav_print.h>
42 #include "vmcmd.h"
43 39
44 static void print_time(dvd_time_t *dtime) { 40 static void print_time(dvd_time_t *dtime) {
45 const char *rate; 41 const char *rate;
46 42
47 assert((dtime->hour>>4) < 0xa && (dtime->hour&0xf) < 0xa); 43 assert((dtime->hour>>4) < 0xa && (dtime->hour&0xf) < 0xa);