aboutsummaryrefslogtreecommitdiff
path: root/frontend/common
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/common')
-rw-r--r--frontend/common/menu.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/frontend/common/menu.c b/frontend/common/menu.c
index 1cb41c5..5f97730 100644
--- a/frontend/common/menu.c
+++ b/frontend/common/menu.c
@@ -652,7 +652,7 @@ static void me_loop(menu_entry *menu, int *menu_sel, void (*draw_more)(void))
/* ***************************************** */
-static void draw_menu_credits(void)
+static void draw_menu_credits(void (*draw_more)(void))
{
const char *creds, *p;
int x, y, h, w, wt;
@@ -686,6 +686,9 @@ static void draw_menu_credits(void)
p++;
}
+ if (draw_more != NULL)
+ draw_more();
+
menu_draw_end();
}