This commit is contained in:
Bernhard Schelling 2023-06-21 04:22:15 +09:00 committed by LibretroAdmin
parent c60878a10d
commit 20bb335017

View File

@ -9293,6 +9293,7 @@ static void RETRO_CALLCONV netplay_netpacket_send(const void* buf, size_t len,
} }
else else
{ {
struct netplay_connection *connection;
size_t i = client_id - (netplay->is_server ? 1 : 0); size_t i = client_id - (netplay->is_server ? 1 : 0);
if (i >= netplay->connections_size) if (i >= netplay->connections_size)
{ {
@ -9300,7 +9301,7 @@ static void RETRO_CALLCONV netplay_netpacket_send(const void* buf, size_t len,
client_id); client_id);
return; return;
} }
struct netplay_connection *connection = &netplay->connections[i]; connection = &netplay->connections[i];
if ( (connection->flags & NETPLAY_CONN_FLAG_ACTIVE) if ( (connection->flags & NETPLAY_CONN_FLAG_ACTIVE)
&& (connection->mode == NETPLAY_CONNECTION_PLAYING) && (connection->mode == NETPLAY_CONNECTION_PLAYING)
&& !netplay_send_raw_cmd(netplay, connection, && !netplay_send_raw_cmd(netplay, connection,