aboutsummaryrefslogtreecommitdiff
path: root/frontend/common
diff options
context:
space:
mode:
authornotaz2010-12-12 01:40:19 +0200
committernotaz2010-12-14 15:25:05 +0200
commit3c70c47bb2fa50066c4c3b23813253e03b8751fe (patch)
tree4f1a9dcfa15ed42879951aa970d016c18f98dbc0 /frontend/common
parent722285599b1ce45ca435f484b0f34a5e568487a1 (diff)
downloadpcsx_rearmed-3c70c47bb2fa50066c4c3b23813253e03b8751fe.tar.gz
pcsx_rearmed-3c70c47bb2fa50066c4c3b23813253e03b8751fe.tar.bz2
pcsx_rearmed-3c70c47bb2fa50066c4c3b23813253e03b8751fe.zip
menu: implement savestates and scaling cfg
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();
}