diff options
| author | roy <[email protected]> | 2026-07-08 04:43:05 +0300 |
|---|---|---|
| committer | roy <[email protected]> | 2026-07-08 04:43:05 +0300 |
| commit | 35c90588b348cc0cf7ee7d130dd9eb21139a8d35 (patch) | |
| tree | 8564fad84225824365a7a019a9b752894521a9bf | |
| parent | 85ce7a5b698fad1407ad473085d252feb1f58e2b (diff) | |
Made settings prompts clearer.
| -rw-r--r-- | main.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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); |
