comparison src/video/directfb/SDL_DirectFB_video.c @ 2722:91f1706b27be

indent. *sigh*
author Sam Lantinga <slouken@libsdl.org>
date Tue, 26 Aug 2008 02:40:24 +0000
parents e82a0e3e9b0e
children 204be4fc2726
comparison
equal deleted inserted replaced
2721:e82a0e3e9b0e 2722:91f1706b27be
698 if (window->flags & SDL_WINDOW_FULLSCREEN) { 698 if (window->flags & SDL_WINDOW_FULLSCREEN) {
699 x = 0; 699 x = 0;
700 y = 0; 700 y = 0;
701 } 701 }
702 702
703 desc.flags = 703 desc.flags = DWDESC_WIDTH | DWDESC_HEIGHT /*| DWDESC_CAPS */ | DWDESC_PIXELFORMAT
704 DWDESC_WIDTH | DWDESC_HEIGHT /*| DWDESC_CAPS */ | DWDESC_PIXELFORMAT 704 | DWDESC_SURFACE_CAPS;
705 |
706 DWDESC_SURFACE_CAPS;
707 705
708 #if (DIRECTFB_MAJOR_VERSION == 1) && (DIRECTFB_MINOR_VERSION >= 0) 706 #if (DIRECTFB_MAJOR_VERSION == 1) && (DIRECTFB_MINOR_VERSION >= 0)
709 /* Needed for 1.2 */ 707 /* Needed for 1.2 */
710 desc.flags |= DWDESC_POSX | DWDESC_POSY; 708 desc.flags |= DWDESC_POSX | DWDESC_POSY;
711 desc.posx = x; 709 desc.posx = x;