Merge pull request #1231 from lakkatv/xmb

(Menu) Fix two warnings
This commit is contained in:
Twinaphex 2014-11-08 01:48:06 +01:00
commit 39f9ab895e

View File

@ -20,6 +20,7 @@
#include "../general.h"
#include <boolean.h>
#include <rthreads/rthreads.h>
#include "fonts/gl_font.h"
/* Starts a video driver in a new thread.
* Access to video driver will be mediated through this driver. */
@ -161,9 +162,11 @@ typedef struct thread_video
struct
{
bool (*method)(void*, void*, void*, const char*, float);
void *font_driver;
void *font_handle;
bool (*method)(const gl_font_renderer_t **font_driver,
void **font_handle, void *video_data, const char *font_path,
float font_size);
const gl_font_renderer_t **font_driver;
void **font_handle;
void *video_data;
const char *font_path;
float font_size;