aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorroy <[email protected]>2026-07-08 04:43:05 +0300
committerroy <[email protected]>2026-07-08 04:43:05 +0300
commit35c90588b348cc0cf7ee7d130dd9eb21139a8d35 (patch)
tree8564fad84225824365a7a019a9b752894521a9bf /main.cpp
parent85ce7a5b698fad1407ad473085d252feb1f58e2b (diff)
Made settings prompts clearer.
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/main.cpp b/main.cpp
index 3dc1ceb..7e18d2b 100644
--- a/main.cpp
+++ b/main.cpp
@@ -481,7 +481,6 @@ class Snake {
} catch (const std::exception &e) {
iTmp = val;
- std::cout << e.what() << '\n';
}
val = iTmp;
}
@@ -496,9 +495,9 @@ class Snake {
tgu::EnterGameBuffer();
- SinglePrompt("Width: ", width);
- SinglePrompt("Height: ", height);
- SinglePrompt("Starting delay: ", startingdelay);
+ SinglePrompt("Board Width: ", width);
+ SinglePrompt("Board Height: ", height);
+ SinglePrompt("Starting delay between steps (ms): ", startingdelay);
SinglePrompt("Max speed: ", maxspeed);
SinglePrompt("Acceleration: ", acceleration);