comparison src/video/win32/SDL_win32events.c @ 2990:502adab079a4

indent
author Sam Lantinga <slouken@libsdl.org>
date Sun, 04 Jan 2009 17:14:27 +0000
parents 317b2f8e5e4f
children 54fac87e1f34
comparison
equal deleted inserted replaced
2989:aba5a5cc2e63 2990:502adab079a4
285 } else if (flags & RI_MOUSE_BUTTON_5_UP) { 285 } else if (flags & RI_MOUSE_BUTTON_5_UP) {
286 SDL_SendMouseButton(index, SDL_RELEASED, SDL_BUTTON_X2); 286 SDL_SendMouseButton(index, SDL_RELEASED, SDL_BUTTON_X2);
287 } 287 }
288 if (flags & RI_MOUSE_WHEEL) { 288 if (flags & RI_MOUSE_WHEEL) {
289 SDL_SendMouseWheel(index, 0, 289 SDL_SendMouseWheel(index, 0,
290 (short)raw->data.mouse.usButtonData); 290 (short) raw->data.mouse.usButtonData);
291 } 291 }
292 SDL_stack_free(lpb); 292 SDL_stack_free(lpb);
293 } 293 }
294 return (0); 294 return (0);
295 295