equal
deleted
inserted
replaced
164 UITouch *touch = [touches anyObject]; |
164 UITouch *touch = [touches anyObject]; |
165 gestureStartPoint = [touch locationInView:self]; |
165 gestureStartPoint = [touch locationInView:self]; |
166 |
166 |
167 // one tap - single click |
167 // one tap - single click |
168 if (1 == [touch tapCount] ) { |
168 if (1 == [touch tapCount] ) { |
169 //SDL_WarpMouseInWindow([SDLUIKitDelegate sharedAppDelegate].windowID, gestureStartPoint.x, gestureStartPoint.y); |
169 SDL_WarpMouseInWindow([SDLUIKitDelegate sharedAppDelegate].windowID, gestureStartPoint.x, gestureStartPoint.y); |
170 HW_click(); |
170 HW_click(); |
171 } |
171 } |
172 |
172 |
173 // two taps - right click |
173 // two taps - right click |
174 if (2 == [touch tapCount] ) { |
174 if (2 == [touch tapCount] ) { |