Mercurial > sdl-ios-xcode
comparison src/events/SDL_mouse.c @ 3253:5d7ef5970073
Fixed issues building 64-bit Windows binary
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 05 Sep 2009 23:37:35 +0000 |
parents | 08747e24a50f |
children | 6bb9952d5029 |
comparison
equal
deleted
inserted
replaced
3252:d2465e21f103 | 3253:5d7ef5970073 |
---|---|
68 SDL_AddMouse(const SDL_Mouse * mouse, char *name, int pressure_max, | 68 SDL_AddMouse(const SDL_Mouse * mouse, char *name, int pressure_max, |
69 int pressure_min, int ends) | 69 int pressure_min, int ends) |
70 { | 70 { |
71 SDL_Mouse **mice; | 71 SDL_Mouse **mice; |
72 int selected_mouse; | 72 int selected_mouse; |
73 int index, length; | 73 int index; |
74 size_t length; | |
74 | 75 |
75 if (SDL_GetMouseIndexId(mouse->id) != -1) { | 76 if (SDL_GetMouseIndexId(mouse->id) != -1) { |
76 SDL_SetError("Mouse ID already in use"); | 77 SDL_SetError("Mouse ID already in use"); |
77 } | 78 } |
78 | 79 |