I forgot to comment out a printf

This commit is contained in:
Titus Tscharntke 2012-01-28 14:41:46 +00:00
parent 7de49ddc56
commit 4b2703a771
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ Checksum TechTree::loadTech(const string &techName,
Checksum techtreeChecksum;
string path=findPath(techName);
if(path!=""){
printf(">>> path=%s\n",path.c_str());
//printf(">>> path=%s\n",path.c_str());
load(path, factions, checksum, &techtreeChecksum, loadedFileList);
}
else
@ -68,7 +68,7 @@ string TechTree::findPath(const string &techName) const{
string path = currentPath + techName;
printf(">>> test path=%s\n",path.c_str());
//printf(">>> test path=%s\n",path.c_str());
if(isdir(path.c_str()) == true) {
return path;
break;