mirror of
https://github.com/libretro/RetroArch
synced 2025-01-29 18:32:44 +00:00
(joypad/connect) Change 'index' local variables
This commit is contained in:
parent
faeca01e7a
commit
0fb301fa43
@ -165,11 +165,11 @@ static void hidpad_ps3_set_rumble(void *data,
|
||||
enum retro_rumble_effect effect, uint16_t strength)
|
||||
{
|
||||
struct hidpad_ps3_data *device = (struct hidpad_ps3_data*)data;
|
||||
unsigned index = (effect == RETRO_RUMBLE_STRONG) ? 0 : 1;
|
||||
unsigned idx = (effect == RETRO_RUMBLE_STRONG) ? 0 : 1;
|
||||
|
||||
if (device && (device->motors[index] != strength))
|
||||
if (device && (device->motors[idx] != strength))
|
||||
{
|
||||
device->motors[index] = strength;
|
||||
device->motors[idx] = strength;
|
||||
hidpad_ps3_send_control(device);
|
||||
}
|
||||
}
|
||||
|
@ -168,11 +168,11 @@ static void hidpad_ps4_set_rumble(void *data,
|
||||
/* TODO */
|
||||
#if 0
|
||||
struct hidpad_ps4_data *device = (struct hidpad_ps4_data*)data;
|
||||
unsigned index = (effect == RETRO_RUMBLE_STRONG) ? 0 : 1;
|
||||
unsigned idx = (effect == RETRO_RUMBLE_STRONG) ? 0 : 1;
|
||||
|
||||
if (device && (device->motors[index] != strength))
|
||||
if (device && (device->motors[idx] != strength))
|
||||
{
|
||||
device->motors[index] = strength;
|
||||
device->motors[idx] = strength;
|
||||
hidpad_ps4_send_control(device);
|
||||
}
|
||||
#endif
|
||||
|
@ -141,7 +141,7 @@ uint32_t pad_connection_get_buttons(joypad_connection_t *s, unsigned pad)
|
||||
}
|
||||
|
||||
int16_t pad_connection_get_axis(joypad_connection_t *s,
|
||||
unsigned index, unsigned i)
|
||||
unsigned idx, unsigned i)
|
||||
{
|
||||
if (s->iface)
|
||||
return s->iface->get_axis(s->data, i);
|
||||
|
@ -56,22 +56,22 @@ void *pad_connection_init(unsigned pads);
|
||||
void pad_connection_destroy(joypad_connection_t *joyconn);
|
||||
|
||||
void pad_connection_disconnect(joypad_connection_t *joyconn,
|
||||
unsigned index);
|
||||
unsigned idx);
|
||||
|
||||
void pad_connection_packet(joypad_connection_t *joyconn,
|
||||
unsigned index, uint8_t* data, uint32_t length);
|
||||
unsigned idx, uint8_t* data, uint32_t length);
|
||||
|
||||
uint32_t pad_connection_get_buttons(joypad_connection_t *joyconn,
|
||||
unsigned index);
|
||||
unsigned idx);
|
||||
|
||||
int16_t pad_connection_get_axis(joypad_connection_t *joyconn,
|
||||
unsigned index, unsigned i);
|
||||
unsigned idx, unsigned i);
|
||||
|
||||
/* Determine if connected joypad is a hidpad backed device.
|
||||
* If false, pad_connection_packet cannot be used */
|
||||
|
||||
bool pad_connection_has_interface(joypad_connection_t *joyconn,
|
||||
unsigned index);
|
||||
unsigned idx);
|
||||
|
||||
bool pad_connection_rumble(joypad_connection_t *s,
|
||||
unsigned pad, enum retro_rumble_effect effect, uint16_t strength);
|
||||
|
Loading…
x
Reference in New Issue
Block a user