adds activePlayerList and runningPlayerList (XXV) - bugfixes

This commit is contained in:
doitux
2007-09-29 17:08:05 +00:00
parent 45774f4b75
commit 6e795d99d5
5 changed files with 74 additions and 31 deletions
+1 -1
View File
@@ -1465,7 +1465,7 @@ QString Log::determineHandName(int myCardsValueInt) {
it++;
} else {
different = true;
sameHandCardsValueInt.erase(it);
it = sameHandCardsValueInt.erase(it);
}
}
if(different) {
+2 -2
View File
@@ -805,7 +805,7 @@ void mainWindowImpl::startNewLocalGame(newGameDialogImpl *v) {
startData.numberOfPlayers = gameData.maxNumberOfPlayers;
Tools::getRandNumber(0, startData.numberOfPlayers-1, 1, &tmpDealerPos, 0);
if(DEBUG_MODE) {
tmpDealerPos = 6;
tmpDealerPos = 3;
}
startData.startDealerPlayerId = static_cast<unsigned>(tmpDealerPos);
@@ -2967,7 +2967,7 @@ void mainWindowImpl::localGameModification() {
}
//Set the playing mode to "manual"
playingMode = 0;
playingMode = 1;
}