comparison src/video/uikit/SDL_uikitview.h @ 2425:491958a6c881 gsoc2008_iphone

Removed log messages (printf and NSLog)
author Holmes Futrell <hfutrell@umail.ucsb.edu>
date Fri, 15 Aug 2008 00:42:14 +0000
parents ab89ff6e97af
children 96124abbcede
comparison
equal deleted inserted replaced
2424:ecc18fbfdec3 2425:491958a6c881
24 #include "SDL_stdinc.h" 24 #include "SDL_stdinc.h"
25 #include "SDL_mouse.h" 25 #include "SDL_mouse.h"
26 #include "SDL_mouse_c.h" 26 #include "SDL_mouse_c.h"
27 #include "SDL_events.h" 27 #include "SDL_events.h"
28 28
29 #define MAX_SIMULTANEOUS_TOUCHES 5 29 #if SDL_IPHONE_MULTIPLE_MICE
30 #define MAX_SIMULTANEOUS_TOUCHES 5
31 #else
32 #define MAX_SIMULTANEOUS_TOUCHES 1
33 #endif
30 34
31 @interface SDL_uikitview : UIView<UITextFieldDelegate> { 35 @interface SDL_uikitview : UIView<UITextFieldDelegate> {
32 36
33 SDL_Mouse mice[MAX_SIMULTANEOUS_TOUCHES]; 37 SDL_Mouse mice[MAX_SIMULTANEOUS_TOUCHES];
34 38