Skip to content

Commit fe003db

Browse files
committed
Removed some print lines
1 parent 2bb5599 commit fe003db

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/GameController.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,6 @@ bool GameController::handleBankClick(ScreenCoordinate screenCoord) {
487487
std::array<int, 5> splitOffer;
488488
std::array<int, 5> splitDemand;
489489
for(int i = 0; i < 5; i++) {
490-
std::cout << "offer " << i << " " << offer[i] << std::endl;
491490
splitOffer[i] = offer[i] > 0 ? 0 : -offer[i];
492491
splitDemand[i] = offer[i] < 0 ? 0 : offer[i];
493492
}

src/Player.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,6 @@ bool Player::makeBankTrade(std::array<int, 5> offer, std::array<int, 5> demand)
639639
}
640640
int credits = 0;
641641
for(int i = 0; i < 5; i++) {
642-
std::cout << i << " " << offer[i] << " " << tradeModifiers[i] << std::endl;
643642
credits += offer[i] / tradeModifiers[i];
644643
}
645644
for(int i = 0; i < 5; i++) {

0 commit comments

Comments
 (0)