Skip to content

Commit

Permalink
(PS3) Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
inactive123 committed May 21, 2015
1 parent c848a15 commit 75004e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gfx/drivers_font/ps_libdbgfont.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,6 @@ font_renderer_t libdbg_font = {
"libdbgfont",
NULL, /* get_glyph */
NULL, /* bind_block */
NULL, /* flush */,
NULL, /* flush */
NULL, /* get_message_width */
};
7 changes: 2 additions & 5 deletions menu/drivers/rmenu.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit 75004e7

Please sign in to comment.