Silence -Waddress

This is a continuation of c9149895f5
This commit is contained in:
pstef 2025-03-25 20:06:33 +00:00
parent a4bfd84cc7
commit ac38cfe8da
3 changed files with 3 additions and 3 deletions

View file

@ -120,7 +120,7 @@ static int16_t linuxraw_input_state(
} }
break; break;
case RETRO_DEVICE_ANALOG: case RETRO_DEVICE_ANALOG:
if (binds[port]) if (binds)
{ {
int id_minus_key = 0; int id_minus_key = 0;
int id_plus_key = 0; int id_plus_key = 0;

View file

@ -214,7 +214,7 @@ static int16_t input_wl_state(
} }
break; break;
case RETRO_DEVICE_ANALOG: case RETRO_DEVICE_ANALOG:
if (binds[port]) if (binds)
{ {
int id_minus_key = 0; int id_minus_key = 0;
int id_plus_key = 0; int id_plus_key = 0;

View file

@ -175,7 +175,7 @@ static int16_t x_input_state(
} }
break; break;
case RETRO_DEVICE_ANALOG: case RETRO_DEVICE_ANALOG:
if (binds[port]) if (binds)
{ {
int id_minus_key = 0; int id_minus_key = 0;
int id_plus_key = 0; int id_plus_key = 0;