Selaa lähdekoodia

Remove Prints from touch

Mark Sibly 8 vuotta sitten
vanhempi
commit
0c4bc1868f
1 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. 3 3
      modules/mojo/input/touch.monkey2

+ 3 - 3
modules/mojo/input/touch.monkey2

@@ -85,7 +85,7 @@ Class TouchDevice Extends InputDevice
 		
 		
 			Local tevent:=Cast<SDL_TouchFingerEvent Ptr>( event )
 			Local tevent:=Cast<SDL_TouchFingerEvent Ptr>( event )
 			
 			
-			Print "SDL_FINGERDOWN, id="+tevent->fingerId
+'			Print "SDL_FINGERDOWN, id="+tevent->fingerId
 		
 		
 			Local id:=-1
 			Local id:=-1
 			For Local i:=0 Until 10
 			For Local i:=0 Until 10
@@ -105,7 +105,7 @@ Class TouchDevice Extends InputDevice
 
 
 			Local tevent:=Cast<SDL_TouchFingerEvent Ptr>( event )
 			Local tevent:=Cast<SDL_TouchFingerEvent Ptr>( event )
 			
 			
-			Print "SDL_FINGERUP, id="+tevent->fingerId
+'			Print "SDL_FINGERUP, id="+tevent->fingerId
 		
 		
 			Local id:=-1
 			Local id:=-1
 			For Local i:=0 Until 10
 			For Local i:=0 Until 10
@@ -124,7 +124,7 @@ Class TouchDevice Extends InputDevice
 
 
 			Local tevent:=Cast<SDL_TouchFingerEvent Ptr>( event )
 			Local tevent:=Cast<SDL_TouchFingerEvent Ptr>( event )
 			
 			
-			Print "SDL_FINGERMOTION, id="+tevent->fingerId
+'			Print "SDL_FINGERMOTION, id="+tevent->fingerId
 			
 			
 			Local id:=-1
 			Local id:=-1
 			For Local i:=0 Until 10
 			For Local i:=0 Until 10