Mercurial > sdl-ios-xcode
comparison src/events/SDL_mouse.c @ 518:300b46757b7a
Fixed compiler warning
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 07 Oct 2002 15:19:34 +0000 |
parents | a888b3ae31ff |
children | b8d311d90021 |
comparison
equal
deleted
inserted
replaced
517:621ab54c1dde | 518:300b46757b7a |
---|---|
60 } | 60 } |
61 | 61 |
62 /* We lost the mouse, so post button up messages for all pressed buttons */ | 62 /* We lost the mouse, so post button up messages for all pressed buttons */ |
63 void SDL_ResetMouse(void) | 63 void SDL_ResetMouse(void) |
64 { | 64 { |
65 int i; | 65 Uint8 i; |
66 for ( i = 0; i < sizeof(SDL_ButtonState)*8; ++i ) { | 66 for ( i = 0; i < sizeof(SDL_ButtonState)*8; ++i ) { |
67 if ( SDL_ButtonState & SDL_BUTTON(i) ) { | 67 if ( SDL_ButtonState & SDL_BUTTON(i) ) { |
68 SDL_PrivateMouseButton(SDL_RELEASED, i, 0, 0); | 68 SDL_PrivateMouseButton(SDL_RELEASED, i, 0, 0); |
69 } | 69 } |
70 } | 70 } |