Fixed macro redefinition. Set money won in server.

This commit is contained in:
lotodore
2007-10-29 22:37:42 +00:00
parent 1a5a5600ce
commit 26157027dc
4 changed files with 6 additions and 6 deletions
@@ -309,12 +309,14 @@ ClientPlayer::getMyRoundStartCash() const
void
ClientPlayer::setLastMoneyWon ( int theValue )
{
boost::recursive_mutex::scoped_lock lock(m_syncMutex);
lastMoneyWon = theValue;
}
int
ClientPlayer::getLastMoneyWon() const
{
boost::recursive_mutex::scoped_lock lock(m_syncMutex);
return lastMoneyWon;
}