couts deleted

This commit is contained in:
doitux
2007-09-26 22:32:00 +00:00
parent 4f7d7ee277
commit ce75d91595
2 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -390,7 +390,7 @@ void LocalHand::switchRounds() {
if ((*it_c)->getMyAction() == 6) allInPlayersCounter++;
}
cout << "allInPlayersCounter: " << allInPlayersCounter << endl;
// cout << "allInPlayersCounter: " << allInPlayersCounter << endl;
// TODO -> runningPlayerList.size()
int nonFoldPlayerCounter = 0;
@@ -398,7 +398,7 @@ void LocalHand::switchRounds() {
if ((*it_c)->getMyAction() != 1) nonFoldPlayerCounter++;
}
cout << "nonFoldPlayerCounter: " << nonFoldPlayerCounter << endl;
// cout << "nonFoldPlayerCounter: " << nonFoldPlayerCounter << endl;
//wenn nur noch einer nicht-folded dann gleich den Pot verteilen
if(nonFoldPlayerCounter==1) {
@@ -524,14 +524,14 @@ PlayerListIterator LocalHand::getRunningPlayerIt(unsigned uniqueId) const {
for(it=runningPlayerList->begin(); it!=runningPlayerList->end(); it++) {
cout << (*it)->getMyUniqueID() << " ";
// cout << (*it)->getMyUniqueID() << " ";
if((*it)->getMyUniqueID() == uniqueId) {
break;
}
}
cout << endl;
// cout << endl;
return it;