mirror of
https://github.com/libretro/RetroArch
synced 2025-03-02 19:13:34 +00:00
fix warnings
This commit is contained in:
parent
bf04d658e6
commit
b508135218
@ -99,8 +99,8 @@ typedef struct
|
||||
} retro_inputs;
|
||||
|
||||
static uint16_t previnput[MAX_PLAYERS] = {0};
|
||||
static Game_Input g_input[MAX_PLAYERS] = {{0}};
|
||||
static Player player[MAX_PLAYERS] = {0};
|
||||
static Game_Input g_input[MAX_PLAYERS] = {{{{0}}}};
|
||||
static Player player[MAX_PLAYERS] = {{0}};
|
||||
|
||||
typedef struct
|
||||
{
|
||||
@ -369,7 +369,7 @@ void GONG_CORE_PREFIX(retro_run)(void)
|
||||
int i = 0;
|
||||
int port = 0;
|
||||
bool updated = false;
|
||||
retro_inputs inputs[MAX_PLAYERS] = {0};
|
||||
retro_inputs inputs[MAX_PLAYERS] = {{0}};
|
||||
|
||||
if (GONG_CORE_PREFIX(environ_cb)(RETRO_ENVIRONMENT_GET_VARIABLE_UPDATE, &updated) && updated)
|
||||
check_variables();
|
||||
|
Loading…
x
Reference in New Issue
Block a user