From 0bbcfc2361106e8b8fff1f34ded1f10983198e10 Mon Sep 17 00:00:00 2001 From: hikerstk Date: Wed, 5 Jan 2011 21:50:07 +0000 Subject: [PATCH] Removed debug print. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@7281 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/addons/network_http.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/addons/network_http.cpp b/src/addons/network_http.cpp index eeb4b5f48..455f3af81 100644 --- a/src/addons/network_http.cpp +++ b/src/addons/network_http.cpp @@ -326,17 +326,6 @@ int NetworkHttp::progressDownload(void *clientp, f= download_total==0 ? 0 : 0.99f; } network_http->m_progress.set(f); - - static int time_last_print=0; - if(time_last_print > 10) - { - std::cout << "Download progress: " << f << "%" << std::endl; - time_last_print = 0; - } - else - { - time_last_print += 1; - } return 0; } // progressDownload