summaryrefslogtreecommitdiff
path: root/src/Game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Game.cpp')
-rw-r--r--src/Game.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Game.cpp b/src/Game.cpp
index 3e7384b..5399a22 100644
--- a/src/Game.cpp
+++ b/src/Game.cpp
@@ -80,7 +80,7 @@ int Game::editDiff(){
std::cin >> mines;
if (mines > 8 || mines > (boardWidth * boardHeight)) {
- std::cout << "There can't be more than " << mines << " mines." << std::endl;
+ std::cout << "There can't be more than 8 or " << (boardWidth * boardHeight) << "mines." << std::endl;
return 1;
}