mirror of https://git.suyu.dev/suyu/suyu
gc_poller: Resolve -Wsign-compare warning
This commit is contained in:
parent
e19972dfc4
commit
04699c366b
|
@ -263,7 +263,8 @@ Common::ParamPackage GCAnalogFactory::GetNextInput() {
|
||||||
if (analog_x_axis == -1) {
|
if (analog_x_axis == -1) {
|
||||||
analog_x_axis = axis;
|
analog_x_axis = axis;
|
||||||
controller_number = static_cast<int>(port);
|
controller_number = static_cast<int>(port);
|
||||||
} else if (analog_y_axis == -1 && analog_x_axis != axis && controller_number == port) {
|
} else if (analog_y_axis == -1 && analog_x_axis != axis &&
|
||||||
|
controller_number == static_cast<int>(port)) {
|
||||||
analog_y_axis = axis;
|
analog_y_axis = axis;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue