aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/YetiHack.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/YetiHack.cpp b/src/YetiHack.cpp
index 1eb6f38..fceeee0 100644
--- a/src/YetiHack.cpp
+++ b/src/YetiHack.cpp
@@ -347,7 +347,8 @@ void menu(bool immortal)
addstr("\t1. Arcade mode (classic)\n");
addstr("\t2. Story mode\n");
addstr("\t3. Help\n");
- addstr("\t4. Exit\n");
+ addstr("\t4. Demo\n");
+ addstr("\t5. Exit\n");
addstr("Select an option to proceed: ");
refresh();
echo();
@@ -400,6 +401,9 @@ void menu(bool immortal)
help();
break;
case '4':
+ intro();
+ break;
+ case '5':
endCurses();
exit(0);
break;
@@ -534,7 +538,6 @@ int main(int argc, char* argv[])
addstr(convert(a));
}*/
startCurses();
- intro();
bool immortal = false;
if (argc > 1 && strcmp(argv[1],"-c") == 0)
{