mirror of https://github.com/PCSX2/pcsx2.git
onepad: fix gcc warning
warning: comparison between signed and unsigned integer expressions
This commit is contained in:
parent
0937526aac
commit
20aee23edc
|
@ -40,7 +40,7 @@ class GamepadConfiguration : public wxDialog
|
|||
wxButton *m_bt_ok, *m_bt_cancel;
|
||||
wxStaticText *m_lbl_rumble_intensity;
|
||||
|
||||
int m_pad_id;
|
||||
u32 m_pad_id;
|
||||
u32 m_init_rumble_intensity, m_init_joystick_sensibility;
|
||||
bool m_init_rumble, m_init_hack_sixaxis, m_init_hack_sixaxis_pressure;
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ class JoystickConfiguration : public wxDialog
|
|||
*m_cb_mouse_Rjoy; // Use mouse for right joystick
|
||||
wxButton *m_bt_ok, *m_bt_cancel;
|
||||
|
||||
int m_pad_id;
|
||||
u32 m_pad_id;
|
||||
// isForLeftJoystick -> true is for Left Joystick, false is for Right Joystick
|
||||
bool m_init_reverse_Lx, m_init_reverse_Ly, m_init_reverse_Rx, m_init_reverse_Ry,
|
||||
m_init_mouse_Ljoy, m_init_mouse_Rjoy, m_isForLeftJoystick;
|
||||
|
|
Loading…
Reference in New Issue