Browse Source

Merge branch 'select_input' into bfgminer

Luke Dashjr 13 years ago
parent
commit
c43b4fdde1
1 changed files with 5 additions and 5 deletions
  1. 5 5
      miner.c

+ 5 - 5
miner.c

@@ -3466,19 +3466,19 @@ static void *input_thread(void __maybe_unused *userdata)
 
 		input = getch();
 		switch (input) {
-		case 'q':
+		case 'q': case 'Q':
 			kill_work();
 			return NULL;
-		case 'd':
+		case 'd': case 'D':
 			display_options();
 			break;
-		case 'p':
+		case 'p': case 'P':
 			display_pools();
 			break;
-		case 's':
+		case 's': case 'S':
 			set_options();
 			break;
-		case 'g':
+		case 'g': case 'G':
 			if (have_opencl)
 				manage_gpu();
 			break;