summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/rockdoom.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/rockdoom.c')
-rw-r--r--apps/plugins/doom/rockdoom.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/plugins/doom/rockdoom.c b/apps/plugins/doom/rockdoom.c
index ca08ec1665..1d065cc981 100644
--- a/apps/plugins/doom/rockdoom.c
+++ b/apps/plugins/doom/rockdoom.c
@@ -550,14 +550,15 @@ static bool Doptions()
550 return (1); 550 return (1);
551} 551}
552 552
553char* choice_get_name(int selected_item, void * data, 553static const char* choice_get_name(int selected_item, void * data,
554 char * buffer, size_t buffer_len) 554 char * buffer, size_t buffer_len)
555{ 555{
556 char **names = (char **) data; 556 const char **names = (const char **) data;
557 (void) buffer; 557 (void) buffer;
558 (void) buffer_len; 558 (void) buffer_len;
559 return names[selected_item]; 559 return names[selected_item];
560} 560}
561
561int list_action_callback(int action, struct gui_synclist *lists) 562int list_action_callback(int action, struct gui_synclist *lists)
562{ 563{
563 (void) lists; 564 (void) lists;
@@ -565,6 +566,7 @@ int list_action_callback(int action, struct gui_synclist *lists)
565 return ACTION_STD_CANCEL; 566 return ACTION_STD_CANCEL;
566 return action; 567 return action;
567} 568}
569
568bool menuchoice(char **names, int count, int *selected) 570bool menuchoice(char **names, int count, int *selected)
569{ 571{
570 struct simplelist_info info; 572 struct simplelist_info info;