comparison libvo/mga_common.c @ 30612:ed1000201cd0

Remove pointless '#if 1' preprocessor directives.
author diego
date Fri, 19 Feb 2010 10:22:29 +0000
parents 0f1b5b68af32
children 402ad9e8caed
comparison
equal deleted inserted replaced
30611:8e3c8ca13b4c 30612:ed1000201cd0
140 vo_mga_flip_page(void) 140 vo_mga_flip_page(void)
141 { 141 {
142 142
143 // printf("-- flip to %d --\n",mga_next_frame); 143 // printf("-- flip to %d --\n",mga_next_frame);
144 144
145 #if 1
146 ioctl(f,MGA_VID_FSEL,&mga_next_frame); 145 ioctl(f,MGA_VID_FSEL,&mga_next_frame);
147 mga_next_frame=(mga_next_frame+1)%mga_vid_config.num_frames; 146 mga_next_frame=(mga_next_frame+1)%mga_vid_config.num_frames;
148 vid_data=frames[mga_next_frame]; 147 vid_data=frames[mga_next_frame];
149 #endif
150 148
151 } 149 }
152 150
153 static int 151 static int
154 draw_frame(uint8_t *src[]) 152 draw_frame(uint8_t *src[])