Commit 3e7d6e34 authored by Sam Lantinga's avatar Sam Lantinga

Fixed compiler warning

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40519
parent 9a5eea0c
...@@ -62,7 +62,7 @@ int SDL_MouseInit(void) ...@@ -62,7 +62,7 @@ int SDL_MouseInit(void)
/* We lost the mouse, so post button up messages for all pressed buttons */ /* We lost the mouse, so post button up messages for all pressed buttons */
void SDL_ResetMouse(void) void SDL_ResetMouse(void)
{ {
int i; Uint8 i;
for ( i = 0; i < sizeof(SDL_ButtonState)*8; ++i ) { for ( i = 0; i < sizeof(SDL_ButtonState)*8; ++i ) {
if ( SDL_ButtonState & SDL_BUTTON(i) ) { if ( SDL_ButtonState & SDL_BUTTON(i) ) {
SDL_PrivateMouseButton(SDL_RELEASED, i, 0, 0); SDL_PrivateMouseButton(SDL_RELEASED, i, 0, 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment