Potential buildfix
This commit is contained in:
parent
89fd900429
commit
ae9ebf13d3
18
retroarch.c
18
retroarch.c
|
@ -234,9 +234,7 @@
|
||||||
|
|
||||||
#include "retroarch.h"
|
#include "retroarch.h"
|
||||||
|
|
||||||
#ifdef HAVE_ACCESSIBILITY
|
|
||||||
#include "accessibility.h"
|
#include "accessibility.h"
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(HAVE_SDL) || defined(HAVE_SDL2) || defined(HAVE_SDL_DINGUX)
|
#if defined(HAVE_SDL) || defined(HAVE_SDL2) || defined(HAVE_SDL_DINGUX)
|
||||||
#include "SDL.h"
|
#include "SDL.h"
|
||||||
|
@ -268,6 +266,13 @@ retro_keybind_set input_autoconf_binds[MAX_USERS];
|
||||||
|
|
||||||
static runloop_state_t runloop_state;
|
static runloop_state_t runloop_state;
|
||||||
static recording_state_t recording_state;
|
static recording_state_t recording_state;
|
||||||
|
static access_state_t access_state_st = {0};
|
||||||
|
|
||||||
|
access_state_t *access_state_get_ptr(void)
|
||||||
|
{
|
||||||
|
return &access_state_st;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
recording_state_t *recording_state_get_ptr(void)
|
recording_state_t *recording_state_get_ptr(void)
|
||||||
{
|
{
|
||||||
|
@ -396,15 +401,6 @@ static bool driver_find_next(const char *label, char *s, size_t len)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(HAVE_ACCESSIBILITY) || defined(HAVE_TRANSLATE)
|
|
||||||
static access_state_t access_state_st = {0};
|
|
||||||
|
|
||||||
access_state_t *access_state_get_ptr(void)
|
|
||||||
{
|
|
||||||
return &access_state_st;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* find_driver_nonempty:
|
* find_driver_nonempty:
|
||||||
* @label : string of driver type to be found.
|
* @label : string of driver type to be found.
|
||||||
|
|
Loading…
Reference in New Issue