included color effect for tips

pull/1/head
Calson Noah 7 years ago
parent f631ea5c19
commit f3201da14b

@ -846,7 +846,7 @@ extern void waiting(char *wait_style)//style in waiting for input.
extern void lesson_list(void) extern void lesson_list(void)
{ {
srand((unsigned)time(NULL)); srand((unsigned)time(NULL));
unsigned short n=rand()%17; unsigned short n=rand()%14;
system("clear"); system("clear");
puts("LESSONS, use command <select 'lesson number' to make a choice: " puts("LESSONS, use command <select 'lesson number' to make a choice: "
"\n1: Beginner lessons" "\n1: Beginner lessons"
@ -864,6 +864,7 @@ extern void lesson_list(void)
"\n13: Random word typing" "\n13: Random word typing"
"\n14: Capital letter training" "\n14: Capital letter training"
"\n15: Mixed lessons"); "\n15: Mixed lessons");
printf(""TIP_COLOR"");
switch(n) switch(n)
{ {
case 1: case 1:
@ -909,3 +910,5 @@ extern void lesson_list(void)
printf("%s",":: You will only get better if you type more\n" ); printf("%s",":: You will only get better if you type more\n" );
break; break;
} }
printf(""RESET"");
}

Loading…
Cancel
Save