1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

Add parameter to command_new

This commit is contained in:
twinaphex 2016-05-09 21:25:37 +02:00
parent f15f28ce02
commit b3422b33fd
3 changed files with 6 additions and 3 deletions

View File

@ -87,6 +87,7 @@
struct command
{
bool local_enable;
#ifdef HAVE_STDIN_CMD
bool stdin_enable;
char stdin_buf[STDIN_BUF_SIZE];
@ -249,12 +250,14 @@ static bool command_stdin_init(command_t *handle)
}
#endif
command_t *command_new(void)
command_t *command_new(bool local_enable)
{
command_t *handle = (command_t*)calloc(1, sizeof(*handle));
if (!handle)
return NULL;
handle->local_enable = local_enable;
return handle;
}

View File

@ -233,7 +233,7 @@ bool command_network_new(
bool network_enable,
uint16_t port);
command_t *command_new(void);
command_t *command_new(bool local_enable);
bool command_poll(command_t *handle);

View File

@ -850,7 +850,7 @@ bool input_driver_init_command(void)
"Cannot use this command interface.\n");
}
input_driver_command = command_new();
input_driver_command = command_new(false);
if (!command_network_new(
input_driver_command,