comparison src/video/ipod/SDL_ipodvideo.c @ 3011:8f4ed5ec2b06

I ran a global "make indent" it modified the following files.
author Bob Pendleton <bob@pendleton.com>
date Fri, 09 Jan 2009 20:43:30 +0000
parents 99210400e8b9
children 8cc00819c8d6
comparison
equal deleted inserted replaced
3010:a6694a812119 3011:8f4ed5ec2b06
775 for (x = r->x; (x < r->x + r->w) && x < lcd_width; x++) { 775 for (x = r->x; (x < r->x + r->w) && x < lcd_width; x++) {
776 ipod_scr[y * (lcd_width / 4) + x / 4] &= 776 ipod_scr[y * (lcd_width / 4) + x / 4] &=
777 ~(3 << (2 * (x % 4))); 777 ~(3 << (2 * (x % 4)));
778 ipod_scr[y * (lcd_width / 4) + x / 4] |= 778 ipod_scr[y * (lcd_width / 4) + x / 4] |=
779 (((Uint8 *) (SDL_VideoSurface->pixels))[y * 779 (((Uint8 *) (SDL_VideoSurface->pixels))[y *
780 SDL_VideoSurface-> 780 SDL_VideoSurface->pitch
781 pitch + 781 +
782 x] & 3) << (2 782 x] & 3) << (2
783 * 783 *
784 (x 784 (x
785 % 785 %
786 4)); 786 4));