summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/codebuster.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/plugins/codebuster.c b/apps/plugins/codebuster.c
index edcb7e7904..5c3be911e5 100644
--- a/apps/plugins/codebuster.c
+++ b/apps/plugins/codebuster.c
@@ -327,8 +327,8 @@ static void randomize_solution(void) {
327 327
328static void settings_menu(void) { 328static void settings_menu(void) {
329 MENUITEM_STRINGLIST(settings_menu, "Settings", NULL, 329 MENUITEM_STRINGLIST(settings_menu, "Settings", NULL,
330 "Number of colors", "Number of pieces", 330 "Number of colours", "Number of pegs",
331 "Number of guesses", "Labels ?", "Frames ?"); 331 "Number of guesses", "Labels", "Frames");
332 332
333 int cur_item =0; 333 int cur_item =0;
334 334
@@ -337,11 +337,11 @@ static void settings_menu(void) {
337 337
338 switch(rb->do_menu(&settings_menu, &cur_item, NULL, false)) { 338 switch(rb->do_menu(&settings_menu, &cur_item, NULL, false)) {
339 case 0: 339 case 0:
340 rb->set_int("Number of colors", "", UNIT_INT, &colors_tmp, 340 rb->set_int("Number of colours", "", UNIT_INT, &colors_tmp,
341 NULL, -1, MAX_COLORS_COUNT, 1, NULL); 341 NULL, -1, MAX_COLORS_COUNT, 1, NULL);
342 break; 342 break;
343 case 1: 343 case 1:
344 rb->set_int("Number of pieces", "", UNIT_INT, &pieces_tmp, 344 rb->set_int("Number of pegs", "", UNIT_INT, &pieces_tmp,
345 NULL, -1, MAX_PIECES_COUNT, 1, NULL); 345 NULL, -1, MAX_PIECES_COUNT, 1, NULL);
346 break; 346 break;
347 case 2: 347 case 2:
@@ -349,10 +349,10 @@ static void settings_menu(void) {
349 NULL, -1, MAX_GUESSES_COUNT, 1, NULL); 349 NULL, -1, MAX_GUESSES_COUNT, 1, NULL);
350 break; 350 break;
351 case 3: 351 case 3:
352 rb->set_bool("Display labels ?", &labeling); 352 rb->set_bool("Display labels", &labeling);
353 break; 353 break;
354 case 4: 354 case 4:
355 rb->set_bool("Display frames ?", &framing); 355 rb->set_bool("Display frames", &framing);
356 break; 356 break;
357 case GO_TO_PREVIOUS: 357 case GO_TO_PREVIOUS:
358 menu_quit = true; 358 menu_quit = true;