Skip to content

Commit

Permalink
Avoid one implicit conversion warning
Browse files Browse the repository at this point in the history
  • Loading branch information
LibretroAdmin committed Sep 1, 2022
1 parent 0ffdd14 commit 328ff1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network/netplay/netplay_frontend.c
Original file line number Diff line number Diff line change
Expand Up @@ -1246,7 +1246,7 @@ static bool netplay_handshake_sync(netplay_t *netplay,
uint32_t cmd[4];
retro_ctx_memory_info_t mem_info;
uint32_t client_num = 0;
uint32_t sram_size = 0;
size_t sram_size = 0;

client_num = (uint32_t)(connection - netplay->connections + 1);
if (netplay->local_paused || netplay->remote_paused)
Expand Down

0 comments on commit 328ff1f

Please sign in to comment.