We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60e3d95 commit a132ff3Copy full SHA for a132ff3
src/startmenu.cpp
@@ -34,6 +34,10 @@ void title_screen()
34
\ \:\ \ \:\ \ \:\/:/ \ \::/ \ \:\/:/ \ \:\/:/ \ \:\ \__\/ /:/
35
\__\/ \ \:\ \ \::/ \__\/ \ \::/ \ \::/ \ \:\ /__/:/
36
\__\/ \__\/ \__\/ \__\/ \__\/ \__\/ )";
37
+
38
+ //Sets terminal size to 32 lines, 118 columns.
39
+ cout << "\e[8;32;118t";
40
+ clrscr();
41
#elif __APPLE__
42
cout << "THE DEEPS";
43
#else
@@ -54,10 +58,6 @@ bool start_menu()
54
58
{
55
59
char c;
56
60
57
- //Sets terminal size to 32 lines, 118 columns.
- cout << "\e[8;32;118t";
- clrscr();
-
61
title_screen();
62
63
cout << "\nWhat will you do?" << endl
0 commit comments