浏览代码

Remove Prints from touch

Mark Sibly 8 年之前
父节点
当前提交
0c4bc1868f
共有 1 个文件被更改,包括 3 次插入3 次删除
  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 )
 			
-			Print "SDL_FINGERDOWN, id="+tevent->fingerId
+'			Print "SDL_FINGERDOWN, id="+tevent->fingerId
 		
 			Local id:=-1
 			For Local i:=0 Until 10
@@ -105,7 +105,7 @@ Class TouchDevice Extends InputDevice
 
 			Local tevent:=Cast<SDL_TouchFingerEvent Ptr>( event )
 			
-			Print "SDL_FINGERUP, id="+tevent->fingerId
+'			Print "SDL_FINGERUP, id="+tevent->fingerId
 		
 			Local id:=-1
 			For Local i:=0 Until 10
@@ -124,7 +124,7 @@ Class TouchDevice Extends InputDevice
 
 			Local tevent:=Cast<SDL_TouchFingerEvent Ptr>( event )
 			
-			Print "SDL_FINGERMOTION, id="+tevent->fingerId
+'			Print "SDL_FINGERMOTION, id="+tevent->fingerId
 			
 			Local id:=-1
 			For Local i:=0 Until 10