comparison src/video/directfb/SDL_DirectFB_video.c @ 3013:8cc00819c8d6

Reverted Bob's indent checkin
author Sam Lantinga <slouken@libsdl.org>
date Sat, 10 Jan 2009 21:50:26 +0000
parents 8f4ed5ec2b06
children d72a0dd80e8b
comparison
equal deleted inserted replaced
3012:7e30c2dc7783 3013:8cc00819c8d6
188 devdata->use_yuv_underlays = atoi(stemp); 188 devdata->use_yuv_underlays = atoi(stemp);
189 189
190 190
191 /* Create global Eventbuffer for axis events */ 191 /* Create global Eventbuffer for axis events */
192 if (devdata->use_linux_input) { 192 if (devdata->use_linux_input) {
193 SDL_DFB_CHECKERR(dfb->CreateInputEventBuffer(dfb, DICAPS_ALL, 193 SDL_DFB_CHECKERR(dfb->
194 DFB_TRUE, 194 CreateInputEventBuffer(dfb, DICAPS_ALL,
195 &devdata->events)); 195 DFB_TRUE, &devdata->events));
196 } else { 196 } else {
197 SDL_DFB_CHECKERR(dfb->CreateInputEventBuffer(dfb, 197 SDL_DFB_CHECKERR(dfb->
198 DICAPS_AXES 198 CreateInputEventBuffer(dfb,
199 /*DICAPS_ALL */ , 199 DICAPS_AXES /*DICAPS_ALL */ ,
200 DFB_TRUE, 200 DFB_TRUE, &devdata->events));
201 &devdata->events));
202 } 201 }
203 202
204 devdata->initialized = 1; 203 devdata->initialized = 1;
205 devdata->dfb = dfb; 204 devdata->dfb = dfb;
206 devdata->firstwin = NULL; 205 devdata->firstwin = NULL;