mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-28 10:40:39 +00:00
Turn some input functions static
This commit is contained in:
parent
4de34a53e7
commit
55de2803a4
@ -259,12 +259,6 @@ void input_driver_unset_nonblock_state(void);
|
||||
|
||||
void input_driver_set_own_driver(void);
|
||||
|
||||
void input_driver_unset_own_driver(void);
|
||||
|
||||
void input_driver_deinit_command(void);
|
||||
|
||||
bool input_driver_init_command(void);
|
||||
|
||||
float *input_driver_get_float(enum input_action action);
|
||||
|
||||
unsigned *input_driver_get_uint(enum input_action action);
|
||||
|
@ -15830,7 +15830,7 @@ void input_driver_unset_nonblock_state(void)
|
||||
input_driver_nonblock_state = false;
|
||||
}
|
||||
|
||||
bool input_driver_init_command(void)
|
||||
static bool input_driver_init_command(void)
|
||||
{
|
||||
#ifdef HAVE_COMMAND
|
||||
settings_t *settings = configuration_settings;
|
||||
@ -15862,7 +15862,7 @@ bool input_driver_init_command(void)
|
||||
return false;
|
||||
}
|
||||
|
||||
void input_driver_deinit_command(void)
|
||||
static void input_driver_deinit_command(void)
|
||||
{
|
||||
#ifdef HAVE_COMMAND
|
||||
if (input_driver_command)
|
||||
|
Loading…
Reference in New Issue
Block a user