From 1bb5b97a59e291124722c8280bc277158e453910 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Mon, 2 Jun 2014 09:53:18 +0000
Subject: [PATCH] remove printf

---
 contrib/mobile/drawContext.cpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/contrib/mobile/drawContext.cpp b/contrib/mobile/drawContext.cpp
index c0ca2160bb..a97342d56d 100644
--- a/contrib/mobile/drawContext.cpp
+++ b/contrib/mobile/drawContext.cpp
@@ -126,8 +126,7 @@ void drawContext::eventHandler(int event, float x, float y)
     break;
   case 1: // finger move (translate)
     // in this case x and y represent the current point
-		printf("currx=%g  prevx=%g\n", _current.wnr[0],_previous.wnr[0]);
-		_translate[0] += (_current.wnr[0] - _previous.wnr[0]);
+    _translate[0] += (_current.wnr[0] - _previous.wnr[0]);
     _translate[1] += (_current.wnr[1] - _previous.wnr[1]);
     _translate[2] = 0.;
     break;
-- 
GitLab