summaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index f7ecf30..01ce7fd 100644
--- a/main.cpp
+++ b/main.cpp
@@ -63,9 +63,11 @@ int main(int argc, char *argv[])
pokerGame->printOpponentCards();
#ifdef DEBUG
- cout << "Computer's AI" << endl;
+ cout << "\nComputer's AI";
pokerGame->opponentAI(pokerGame->getOpponentsCards(1));
pokerGame->printOpponentCards();
+ cout << "Resorted Opponents' cards:" << endl;
+ pokerGame->printOpponentCards();
#endif
#ifdef DEBUG