mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-05 21:52:10 +01:00
Minor int vs. unsigned int bugfix.
This commit is contained in:
parent
8c252f4474
commit
bc87319a03
@ -54,7 +54,7 @@ GCSControlGadgetConfiguration::GCSControlGadgetConfiguration(QString classId, QS
|
|||||||
yawChannel = qSettings->value("yawChannel").toInt();
|
yawChannel = qSettings->value("yawChannel").toInt();
|
||||||
throttleChannel = qSettings->value("throttleChannel").toInt();
|
throttleChannel = qSettings->value("throttleChannel").toInt();
|
||||||
|
|
||||||
udp_port = qSettings->value("controlPortUDP").toInt();
|
udp_port = qSettings->value("controlPortUDP").toUInt();
|
||||||
udp_host = QHostAddress(qSettings->value("controlHostUDP").toString());
|
udp_host = QHostAddress(qSettings->value("controlHostUDP").toString());
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user