summary refs log tree commit diff
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commit7c3bc7440e2764c686b8d1a42c5ed1045fa779a8 (patch)
tree2cab3879d314dd9a157028e0b7a04b396470b759
parentuninstall/deinstall `make' rules (diff)
downloadgame-7c3bc7440e2764c686b8d1a42c5ed1045fa779a8.tar
game-7c3bc7440e2764c686b8d1a42c5ed1045fa779a8.tar.gz
game-7c3bc7440e2764c686b8d1a42c5ed1045fa779a8.tar.bz2
game-7c3bc7440e2764c686b8d1a42c5ed1045fa779a8.tar.xz
game-7c3bc7440e2764c686b8d1a42c5ed1045fa779a8.zip
uncapitalize some words for consistency
-rw-r--r--game.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/game.c b/game.c
index 34e24b5..ad98daf 100644
--- a/game.c
+++ b/game.c
@@ -80,7 +80,7 @@ int
 intro(void)
 {
 	puts("\e[1;1H\e[2J\n"
-		"      Welcome!\n  What's your name?");
+		"      welcome!\n  what's your name?");
 	scanf("%s",name);
 	return 0;
 }
@@ -89,7 +89,7 @@ intro(void)
 int
 pick_type(void)
 {
-	printf("What type are you %s?\n",name);
+	printf("what type are you %s? (this does nothing as of now)\n",name);
 	puts("magic(a):ranged(b):melee(c)");
 	for(;;){
 		scanf("%c",&type);
@@ -98,13 +98,13 @@ pick_type(void)
 				++quit;
 				return 0;
 			case 'a':
-				puts("You are a magic type");
+				puts("you are a magic type");
 				return 0;
 			case 'b':
-				puts("You are a ranged type");
+				puts("you are a ranged type");
 				return 0;
 			case 'c':
-				puts("You are a melee type");
+				puts("you are a melee type");
 				return 0;
 		}
 	}
@@ -155,13 +155,13 @@ up(void)
 		scanf("%c",&c);
 		switch(c){
 			case '.':
-				puts("Main Menu");
+				puts("main menu");
 				return 0;
 			case ',':
 				stats();
 				break;
 			case '?':
-				puts("Upgrades");
+				puts("upgrades");
 				cost();
 				break;
 			case 'a':
@@ -170,7 +170,7 @@ up(void)
 					xp -= ca;
 					++i;
 				}
-				printf("Bought %d Layer(%c) upgrades\n",i,c);
+				printf("bought %d layer(%c) upgrades\n",i,c);
 				break;
 			case 'b':
 				while(xp>cb){
@@ -178,7 +178,7 @@ up(void)
 					xp -= cb;
 					++i;
 				}
-				printf("Bought %d Layer(%c) upgrades\n",i,c);
+				printf("bought %d layer(%c) upgrades\n",i,c);
 				break;
 			case 'c':
 				while(xp>cc){
@@ -186,7 +186,7 @@ up(void)
 					xp -= cc;
 					++i;
 				}
-				printf("Bought %d Layer(%c) upgrades\n",i,c);
+				printf("bought %d layer(%c) upgrades\n",i,c);
 				break;
 			case 'd':
 				while(xp>cd){
@@ -194,7 +194,7 @@ up(void)
 					xp -= cd;
 					++i;
 				}
-				printf("Bought %d Layer(%c) upgrades\n",i,c);
+				printf("bought %d layer(%c) upgrades\n",i,c);
 				break;
 			case 'e':
 				while(xp>ce){
@@ -202,7 +202,7 @@ up(void)
 					xp -= ce;
 					++i;
 				}
-				printf("Bought %d Layer(%c) upgrades\n",i,c);
+				printf("bought %d layer(%c) upgrades\n",i,c);
 				break;
 		}
 	}
@@ -222,7 +222,7 @@ pick(void)
 			stats();
 			break;
 		case '?':
-			puts("Main Menu");
+			puts("main menu");
 			puts("quit(.):stats(,):save(s):load(l):reset(r):upgrades(u)");
 			break;
 		case 's':
@@ -235,7 +235,7 @@ pick(void)
 			reset();
 			break;
 		case 'u':
-			puts("Upgrades");
+			puts("upgrades");
 			up();
 			break;
 		default:
@@ -276,7 +276,7 @@ main(void)
 	while(quit<1)
 		pick();
 	save();
-	puts("Saving and exiting");
+	puts("saving and exiting");
 	pthread_exit(NULL);
 	return 0;
 }