comparison src/video/wincommon/SDL_sysevents.c @ 332:3d6dd1b7b7ba

Mouse wheel fix patch.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 08 Apr 2002 17:50:30 +0000
parents 13fc64213765
children f2ba51f64d49
comparison
equal deleted inserted replaced
331:e9278438fb3b 332:3d6dd1b7b7ba
368 button = 4; 368 button = 4;
369 else 369 else
370 button = 5; 370 button = 5;
371 posted = SDL_PrivateMouseButton( 371 posted = SDL_PrivateMouseButton(
372 SDL_PRESSED, button, 0, 0); 372 SDL_PRESSED, button, 0, 0);
373 posted |= SDL_PrivateMouseButton(
374 SDL_RELEASED, button, 0, 0);
373 } 375 }
374 } 376 }
375 return(0); 377 return(0);
376 #endif 378 #endif
377 379