mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 20:51:47 +00:00
C89_BUILD fixes
This commit is contained in:
parent
2cad3e09d2
commit
54a9a3bd1d
22
command.c
22
command.c
@ -2623,11 +2623,13 @@ TODO: Add a setting for these tweaks */
|
|||||||
case CMD_EVENT_NETPLAY_INIT_DIRECT:
|
case CMD_EVENT_NETPLAY_INIT_DIRECT:
|
||||||
{
|
{
|
||||||
/* buf is expected to be address|port */
|
/* buf is expected to be address|port */
|
||||||
char *buf = (char *)data;
|
|
||||||
RARCH_LOG("[netplay] buf %s\n", buf);
|
|
||||||
static struct string_list *hostname = NULL;
|
static struct string_list *hostname = NULL;
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
hostname = string_split(buf, "|");
|
char *buf = (char *)data;
|
||||||
|
|
||||||
|
RARCH_LOG("[netplay] buf %s\n", buf);
|
||||||
|
|
||||||
|
hostname = string_split(buf, "|");
|
||||||
|
|
||||||
command_event(CMD_EVENT_NETPLAY_DEINIT, NULL);
|
command_event(CMD_EVENT_NETPLAY_DEINIT, NULL);
|
||||||
|
|
||||||
@ -2657,12 +2659,14 @@ TODO: Add a setting for these tweaks */
|
|||||||
/* init netplay via lobby when content is not loaded */
|
/* init netplay via lobby when content is not loaded */
|
||||||
case CMD_EVENT_NETPLAY_INIT_DIRECT_DEFERRED:
|
case CMD_EVENT_NETPLAY_INIT_DIRECT_DEFERRED:
|
||||||
{
|
{
|
||||||
/* buf is expected to be address|port */
|
|
||||||
char *buf = (char *)data;
|
|
||||||
RARCH_LOG("[netplay] buf %s\n", buf);
|
|
||||||
static struct string_list *hostname = NULL;
|
static struct string_list *hostname = NULL;
|
||||||
settings_t *settings = config_get_ptr();
|
/* buf is expected to be address|port */
|
||||||
hostname = string_split(buf, "|");
|
settings_t *settings = config_get_ptr();
|
||||||
|
char *buf = (char *)data;
|
||||||
|
|
||||||
|
RARCH_LOG("[netplay] buf %s\n", buf);
|
||||||
|
|
||||||
|
hostname = string_split(buf, "|");
|
||||||
|
|
||||||
command_event(CMD_EVENT_NETPLAY_DEINIT, NULL);
|
command_event(CMD_EVENT_NETPLAY_DEINIT, NULL);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user