(menu_display.h) Take out some header dependencies

This commit is contained in:
twinaphex 2015-06-13 17:08:38 +02:00
parent 10e44ab252
commit d09a5dbc57
2 changed files with 2 additions and 4 deletions

View File

@ -22,6 +22,7 @@
#include "../../retroarch.h"
#include "../../config.def.h"
#include "../gfx/video_context_driver.h"
#include "../gfx/video_thread_wrapper.h"
#include "menu_list.h"
menu_framebuf_t *menu_display_fb_get_ptr(void)
@ -32,7 +33,6 @@ menu_framebuf_t *menu_display_fb_get_ptr(void)
return &menu->frame_buf;
}
static bool menu_display_fb_in_use(menu_framebuf_t *frame_buf)
{
if (!frame_buf)
@ -163,7 +163,7 @@ bool menu_display_font_init_first(const void **font_driver,
{
driver_t *driver = driver_get_ptr();
thread_video_t *thr = (thread_video_t*)driver->video_data;
thread_packet_t pkt;
thread_packet_t pkt = {0};
if (!thr)
return false;

View File

@ -18,8 +18,6 @@
#include "menu_driver.h"
#include "menu_list.h"
#include "../gfx/video_thread_wrapper.h"
#include "../gfx/font_renderer_driver.h"
#ifdef __cplusplus
extern "C" {