\r
/* ***************************************** */\r
\r
-static void draw_menu_credits(void (*draw_more)(void))\r
+static void draw_menu_message(const char *msg, void (*draw_more)(void))\r
{\r
- const char *creds, *p;\r
int x, y, h, w, wt;\r
+ const char *p;\r
\r
- p = creds = plat_get_credits();\r
-\r
+ p = msg;\r
for (h = 1, w = 0; *p != 0; h++) {\r
for (wt = 0; *p != 0 && *p != '\n'; p++)\r
wt++;\r
\r
menu_draw_begin(1);\r
\r
- for (p = creds; *p != 0 && y <= g_menuscreen_h - me_mfont_h; y += me_mfont_h) {\r
+ for (p = msg; *p != 0 && y <= g_menuscreen_h - me_mfont_h; y += me_mfont_h) {\r
text_out16(x, y, p);\r
\r
for (; *p != 0 && *p != '\n'; p++)\r
unsigned int plat_get_ticks_us(void);
void plat_wait_till_us(unsigned int us);
-const char *plat_get_credits(void);
void plat_debug_cat(char *str);
#ifdef __cplusplus