Fixed some compiler warnings. Added error if game is running.
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
//
|
||||
#include "clientbero.h"
|
||||
|
||||
ClientBeRo::ClientBeRo(HandInterface* hi, int id, int qP, int dP, int sB, GameState gS)
|
||||
ClientBeRo::ClientBeRo(HandInterface* hi, int /*id*/, int /*qP*/, int dP, int sB, GameState gS)
|
||||
: BeRoInterface(), myHand(hi), highestCardsValue(0), myBeRoID(gS), smallBlindPosition(0), smallBlind(sB), highestSet(0), firstRound(1), playersTurn(dP), minimumRaise(0)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -165,7 +165,7 @@ ClientPlayer::getMyLastRelativeSet() const
|
||||
}
|
||||
|
||||
void
|
||||
ClientPlayer::setMyAction(int theValue, bool blind)
|
||||
ClientPlayer::setMyAction(int theValue, bool /*blind*/)
|
||||
{
|
||||
boost::recursive_mutex::scoped_lock lock(m_syncMutex);
|
||||
myAction = theValue;
|
||||
@@ -421,20 +421,20 @@ ClientPlayer::riverEngine()
|
||||
|
||||
|
||||
void
|
||||
ClientPlayer::evaluation(int bet, int raise)
|
||||
ClientPlayer::evaluation(int /*bet*/, int /*raise*/)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
ClientPlayer::preflopCardsValue(int* cards)
|
||||
ClientPlayer::preflopCardsValue(int* /*cards*/)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
ClientPlayer::flopCardsValue(int* cards)
|
||||
ClientPlayer::flopCardsValue(int* /*cards*/)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
@@ -446,7 +446,7 @@ ClientPlayer::readFile()
|
||||
}
|
||||
|
||||
int
|
||||
ClientPlayer::turnCardsValue(int* cards)
|
||||
ClientPlayer::turnCardsValue(int* /*cards*/)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user