mirror of
https://github.com/libretro/RetroArch
synced 2025-04-02 07:20:34 +00:00
Get rid of local_enable variable
This commit is contained in:
parent
eec0613c10
commit
0742ebec21
@ -90,7 +90,6 @@
|
|||||||
|
|
||||||
struct command
|
struct command
|
||||||
{
|
{
|
||||||
bool local_enable;
|
|
||||||
#ifdef HAVE_STDIN_CMD
|
#ifdef HAVE_STDIN_CMD
|
||||||
bool stdin_enable;
|
bool stdin_enable;
|
||||||
char stdin_buf[STDIN_BUF_SIZE];
|
char stdin_buf[STDIN_BUF_SIZE];
|
||||||
@ -540,14 +539,12 @@ static bool command_stdin_init(command_t *handle)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
command_t *command_new(bool local_enable)
|
command_t *command_new(void)
|
||||||
{
|
{
|
||||||
command_t *handle = (command_t*)calloc(1, sizeof(*handle));
|
command_t *handle = (command_t*)calloc(1, sizeof(*handle));
|
||||||
if (!handle)
|
if (!handle)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
handle->local_enable = local_enable;
|
|
||||||
|
|
||||||
return handle;
|
return handle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -235,7 +235,7 @@ bool command_network_new(
|
|||||||
bool network_enable,
|
bool network_enable,
|
||||||
uint16_t port);
|
uint16_t port);
|
||||||
|
|
||||||
command_t *command_new(bool local_enable);
|
command_t *command_new(void);
|
||||||
|
|
||||||
bool command_poll(command_t *handle);
|
bool command_poll(command_t *handle);
|
||||||
|
|
||||||
|
@ -1183,7 +1183,7 @@ bool input_driver_init_command(void)
|
|||||||
"Cannot use this command interface.\n");
|
"Cannot use this command interface.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
input_driver_command = command_new(false);
|
input_driver_command = command_new();
|
||||||
|
|
||||||
if (command_network_new(
|
if (command_network_new(
|
||||||
input_driver_command,
|
input_driver_command,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user