mirror of
https://github.com/libretro/RetroArch
synced 2025-03-25 16:44:01 +00:00
(Menu) Fix two warnings
This commit is contained in:
parent
cc82363fb5
commit
26f35861d0
@ -20,6 +20,7 @@
|
|||||||
#include "../general.h"
|
#include "../general.h"
|
||||||
#include <boolean.h>
|
#include <boolean.h>
|
||||||
#include <rthreads/rthreads.h>
|
#include <rthreads/rthreads.h>
|
||||||
|
#include "fonts/gl_font.h"
|
||||||
|
|
||||||
/* Starts a video driver in a new thread.
|
/* Starts a video driver in a new thread.
|
||||||
* Access to video driver will be mediated through this driver. */
|
* Access to video driver will be mediated through this driver. */
|
||||||
@ -161,9 +162,11 @@ typedef struct thread_video
|
|||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
bool (*method)(void*, void*, void*, const char*, float);
|
bool (*method)(const gl_font_renderer_t **font_driver,
|
||||||
void *font_driver;
|
void **font_handle, void *video_data, const char *font_path,
|
||||||
void *font_handle;
|
float font_size);
|
||||||
|
const gl_font_renderer_t **font_driver;
|
||||||
|
void **font_handle;
|
||||||
void *video_data;
|
void *video_data;
|
||||||
const char *font_path;
|
const char *font_path;
|
||||||
float font_size;
|
float font_size;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user