- some changes in sqlite logging

- replace beroID-int by GameState in hand
This commit is contained in:
floty
2011-10-22 23:57:02 +00:00
parent a958c4916e
commit ad4aace71d
11 changed files with 54 additions and 97 deletions
+3 -3
View File
@@ -88,10 +88,10 @@ public:
return startQuantityPlayers;
}
void setCurrentRound(int theValue) {
void setCurrentRound(GameState theValue) {
currentRound = theValue;
}
int getCurrentRound() const {
GameState getCurrentRound() const {
return currentRound;
}
@@ -177,7 +177,7 @@ private:
unsigned dealerPosition;
unsigned smallBlindPosition;
unsigned bigBlindPosition;
int currentRound; //0 = preflop, 1 = flop, 2 = turn, 3 = river
GameState currentRound;
int smallBlind;
int startCash;