X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fcommon%2Fmenu.c;h=5f97730a94032898e0e2d040583730f19c41aa54;hp=1cb41c5734b03c8c9837ef6149ceba3814586331;hb=3c70c47bb2fa50066c4c3b23813253e03b8751fe;hpb=722285599b1ce45ca435f484b0f34a5e568487a1 diff --git a/frontend/common/menu.c b/frontend/common/menu.c index 1cb41c57..5f97730a 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(); }