summaryrefslogtreecommitdiff
path: root/apps/plugins/chessbox
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/chessbox')
-rw-r--r--apps/plugins/chessbox/chessbox.c4
-rw-r--r--apps/plugins/chessbox/chessbox_pgn.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/chessbox/chessbox.c b/apps/plugins/chessbox/chessbox.c
index 920def82d5..4129a3c1fb 100644
--- a/apps/plugins/chessbox/chessbox.c
+++ b/apps/plugins/chessbox/chessbox.c
@@ -393,7 +393,7 @@ static int cb_menu_viewer(void)
393 393
394 while(!menu_quit) 394 while(!menu_quit)
395 { 395 {
396 switch(rb->do_menu(&menu, &selection)) 396 switch(rb->do_menu(&menu, &selection, NULL, false))
397 { 397 {
398 case 0: 398 case 0:
399 menu_quit = true; 399 menu_quit = true;
@@ -595,7 +595,7 @@ static int cb_menu(void)
595 595
596 while(!menu_quit) 596 while(!menu_quit)
597 { 597 {
598 switch(rb->do_menu(&menu, &selection)) 598 switch(rb->do_menu(&menu, &selection, NULL, false))
599 { 599 {
600 case 0: 600 case 0:
601 menu_quit = true; 601 menu_quit = true;
diff --git a/apps/plugins/chessbox/chessbox_pgn.c b/apps/plugins/chessbox/chessbox_pgn.c
index b3e71de77f..6d18986f95 100644
--- a/apps/plugins/chessbox/chessbox_pgn.c
+++ b/apps/plugins/chessbox/chessbox_pgn.c
@@ -628,7 +628,7 @@ struct pgn_game_node* pgn_show_game_list(struct plugin_api* api,
628 } 628 }
629 629
630 630
631 rb->gui_synclist_init(&games_list, &get_game_text, first_game, false, 1); 631 rb->gui_synclist_init(&games_list, &get_game_text, first_game, false, 1, NULL);
632 rb->gui_synclist_set_title(&games_list, "Games", NOICON); 632 rb->gui_synclist_set_title(&games_list, "Games", NOICON);
633 rb->gui_synclist_set_icon_callback(&games_list, NULL); 633 rb->gui_synclist_set_icon_callback(&games_list, NULL);
634 rb->gui_synclist_set_nb_items(&games_list, i); 634 rb->gui_synclist_set_nb_items(&games_list, i);