comparison src/video/win32/SDL_win32events.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 6338b7f2d024
children 83c87f2b2aab
comparison
equal deleted inserted replaced
3252:d2465e21f103 3253:5d7ef5970073
139 case WT_PACKET: 139 case WT_PACKET:
140 { 140 {
141 /* if we receive such data we need to update the pressure */ 141 /* if we receive such data we need to update the pressure */
142 SDL_VideoData *videodata = data->videodata; 142 SDL_VideoData *videodata = data->videodata;
143 if (videodata->wintabDLL 143 if (videodata->wintabDLL
144 && videodata->WTPacket((HCTX) lParam, wParam, &packet)) { 144 && videodata->WTPacket((HCTX) lParam, (UINT) wParam, &packet)) {
145 SDL_ChangeEnd(tablet, (int) packet.pkCursor); 145 SDL_ChangeEnd(tablet, (int) packet.pkCursor);
146 pressure = (int) packet.pkNormalPressure; 146 pressure = (int) packet.pkNormalPressure;
147 } 147 }
148 } 148 }
149 break; 149 break;