(PS3) Build fixes

This commit is contained in:
twinaphex 2015-05-21 04:43:50 +02:00
parent c848a159e9
commit 75004e7ece
2 changed files with 3 additions and 6 deletions

View File

@ -108,6 +108,6 @@ font_renderer_t libdbg_font = {
"libdbgfont",
NULL, /* get_glyph */
NULL, /* bind_block */
NULL, /* flush */,
NULL, /* flush */
NULL, /* get_message_width */
};

View File

@ -125,13 +125,10 @@ static void rmenu_render(void)
struct font_params font_parms;
char title[256], title_buf[256];
char title_msg[64];
const char *dir = NULL;
const char *label = NULL;
unsigned menu_type = 0;
menu_handle_t *menu = menu_driver_get_ptr();
global_t *global = global_get_ptr();
uint64_t frame_count = video_driver_get_frame_count();
size_t entries_end = menu_entries_get_end():
size_t entries_end = menu_entries_get_end();
if (!menu)
return;
@ -184,7 +181,7 @@ static void rmenu_render(void)
font_parms.scale = FONT_SIZE_NORMAL;
font_parms.color = WHITE;
get_core_title(title_msg, sizeof(title_msg));
menu_entries_get_core_title(title_msg, sizeof(title_msg));
video_driver_set_osd_msg(title_msg, &font_parms, NULL);