summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/chessbox/chessbox.c3
-rw-r--r--apps/plugins/chopper.c3
-rw-r--r--apps/plugins/dice.c3
-rw-r--r--apps/plugins/disktidy.c3
-rw-r--r--apps/plugins/minesweeper.c3
-rw-r--r--apps/plugins/snake.c3
-rw-r--r--apps/plugins/star.c3
-rw-r--r--apps/plugins/test_codec.c4
-rw-r--r--apps/plugins/wavrecord.c5
-rw-r--r--apps/plugins/wormlet.c4
10 files changed, 12 insertions, 22 deletions
diff --git a/apps/plugins/chessbox/chessbox.c b/apps/plugins/chessbox/chessbox.c
index f2ae95b4f2..9f9e1099af 100644
--- a/apps/plugins/chessbox/chessbox.c
+++ b/apps/plugins/chessbox/chessbox.c
@@ -528,8 +528,7 @@ static int cb_menu(void)
528 528
529 while(!menu_quit) 529 while(!menu_quit)
530 { 530 {
531 selection = rb->do_menu(&menu, &selection); 531 switch(rb->do_menu(&menu, &selection))
532 switch(selection)
533 { 532 {
534 case 0: 533 case 0:
535 menu_quit = true; 534 menu_quit = true;
diff --git a/apps/plugins/chopper.c b/apps/plugins/chopper.c
index 89f6e3db13..26e70d3e42 100644
--- a/apps/plugins/chopper.c
+++ b/apps/plugins/chopper.c
@@ -647,8 +647,7 @@ static int chopMenu(int menunum)
647 rb->lcd_clear_display(); 647 rb->lcd_clear_display();
648 648
649 while (!menu_quit) { 649 while (!menu_quit) {
650 result=rb->do_menu(&menu,&result); 650 switch(rb->do_menu(&menu, &result))
651 switch (result)
652 { 651 {
653 case 0: /* Start New Game */ 652 case 0: /* Start New Game */
654 menu_quit=true; 653 menu_quit=true;
diff --git a/apps/plugins/dice.c b/apps/plugins/dice.c
index 1113654230..0875248bdc 100644
--- a/apps/plugins/dice.c
+++ b/apps/plugins/dice.c
@@ -235,8 +235,7 @@ static bool dice_menu(int *num_dice, int *side_index) {
235 }; 235 };
236 236
237 while (!menu_quit) { 237 while (!menu_quit) {
238 selection = rb->do_menu(&menu, &selection); 238 switch(rb->do_menu(&menu, &selection))
239 switch(selection)
240 { 239 {
241 case 0: 240 case 0:
242 menu_quit = true; 241 menu_quit = true;
diff --git a/apps/plugins/disktidy.c b/apps/plugins/disktidy.c
index da2e76fb56..4340770e09 100644
--- a/apps/plugins/disktidy.c
+++ b/apps/plugins/disktidy.c
@@ -355,8 +355,7 @@ int tidy_lcd_menu(void)
355 355
356 while (!menu_quit) 356 while (!menu_quit)
357 { 357 {
358 selection = rb->do_menu(&menu,&selection); 358 switch(rb->do_menu(&menu, &selection))
359 switch(selection)
360 { 359 {
361 360
362 case 0: 361 case 0:
diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c
index 9dc983e4c1..31d699501d 100644
--- a/apps/plugins/minesweeper.c
+++ b/apps/plugins/minesweeper.c
@@ -410,8 +410,7 @@ enum minesweeper_status menu( void )
410#endif 410#endif
411 411
412 while (!menu_quit) { 412 while (!menu_quit) {
413 selection=rb->do_menu(&menu,&selection); 413 switch(rb->do_menu(&menu, &selection))
414 switch(selection)
415 { 414 {
416 case 0: 415 case 0:
417 result = MINESWEEPER_WIN; /* start playing */ 416 result = MINESWEEPER_WIN; /* start playing */
diff --git a/apps/plugins/snake.c b/apps/plugins/snake.c
index fa357a8418..6acbb808aa 100644
--- a/apps/plugins/snake.c
+++ b/apps/plugins/snake.c
@@ -342,8 +342,7 @@ void game_init(void) {
342 "Quit"); 342 "Quit");
343 343
344 while (!menu_quit) { 344 while (!menu_quit) {
345 selection = rb->do_menu(&menu, &selection); 345 switch(rb->do_menu(&menu, &selection))
346 switch(selection)
347 { 346 {
348 case 0: 347 case 0:
349 menu_quit = true; /* start playing */ 348 menu_quit = true; /* start playing */
diff --git a/apps/plugins/star.c b/apps/plugins/star.c
index 56cbe8c75d..2e27fd280b 100644
--- a/apps/plugins/star.c
+++ b/apps/plugins/star.c
@@ -876,8 +876,7 @@ static int star_menu(void)
876 876
877 while(!menu_quit) 877 while(!menu_quit)
878 { 878 {
879 selection = rb->do_menu(&menu, &selection); 879 switch(rb->do_menu(&menu, &selection))
880 switch(selection)
881 { 880 {
882 case 0: 881 case 0:
883 menu_quit = true; 882 menu_quit = true;
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c
index 748b07141b..9f452de184 100644
--- a/apps/plugins/test_codec.c
+++ b/apps/plugins/test_codec.c
@@ -452,7 +452,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
452 unsigned char* codec_stack_copy; 452 unsigned char* codec_stack_copy;
453 size_t codec_stack_size; 453 size_t codec_stack_size;
454 struct thread_entry* codecthread_id; 454 struct thread_entry* codecthread_id;
455 int result; 455 int result, selection = 0;
456 char* ch; 456 char* ch;
457 int line = 0; 457 int line = 0;
458 458
@@ -529,7 +529,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
529 529
530 rb->lcd_clear_display(); 530 rb->lcd_clear_display();
531 531
532 result=rb->do_menu(&menu,&result); 532 result=rb->do_menu(&menu,&selection);
533 533
534 if (result==0) { 534 if (result==0) {
535 wavinfo.fd = -1; 535 wavinfo.fd = -1;
diff --git a/apps/plugins/wavrecord.c b/apps/plugins/wavrecord.c
index 645a968342..528d790ed5 100644
--- a/apps/plugins/wavrecord.c
+++ b/apps/plugins/wavrecord.c
@@ -3717,9 +3717,8 @@ static int recording_menu(void)
3717 "Set channels", "Set Source", "Start recording", "Quit"); 3717 "Set channels", "Set Source", "Start recording", "Quit");
3718 3718
3719 while (!done) 3719 while (!done)
3720 { 3720 {
3721 rb->do_menu(&menu, &result); 3721 switch (rb->do_menu(&menu, &result))
3722 switch (result)
3723 { 3722 {
3724 case 0: /* Set sample rate */ 3723 case 0: /* Set sample rate */
3725 rb->set_option("Sample rate", &reccfg.samplerate, INT, freqs, 9, NULL); 3724 rb->set_option("Sample rate", &reccfg.samplerate, INT, freqs, 9, NULL);
diff --git a/apps/plugins/wormlet.c b/apps/plugins/wormlet.c
index c4607cd618..94cf1bdee3 100644
--- a/apps/plugins/wormlet.c
+++ b/apps/plugins/wormlet.c
@@ -2533,9 +2533,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
2533 rb->button_clear_queue(); 2533 rb->button_clear_queue();
2534 2534
2535 while (!menu_quit) { 2535 while (!menu_quit) {
2536 result = rb->do_menu(&menu, &result); 2536 switch(rb->do_menu(&menu, &result))
2537
2538 switch(result)
2539 { 2537 {
2540 case 0: 2538 case 0:
2541 rb->lcd_setfont(FONT_SYSFIXED); 2539 rb->lcd_setfont(FONT_SYSFIXED);