diff --git a/src/gui/qt/gametable/gametableimpl.cpp b/src/gui/qt/gametable/gametableimpl.cpp index e08152c2..86bc2fd7 100755 --- a/src/gui/qt/gametable/gametableimpl.cpp +++ b/src/gui/qt/gametable/gametableimpl.cpp @@ -1647,7 +1647,7 @@ int gameTableImpl::getMyBetAmount() { minimum = currentHand->getCurrentBeRo()->getHighestSet() - currentHand->getSeatsList()->front()->getMySet() + currentHand->getCurrentBeRo()->getMinimumRaise(); if(betValue < minimum) { - return minimum; + return min(minimum,currentHand->getSeatsList()->front()->getMyCash()); } else { return betValue;