mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-17 02:52:12 +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();
|
||||
throttleChannel = qSettings->value("throttleChannel").toInt();
|
||||
|
||||
udp_port = qSettings->value("controlPortUDP").toInt();
|
||||
udp_port = qSettings->value("controlPortUDP").toUInt();
|
||||
udp_host = QHostAddress(qSettings->value("controlHostUDP").toString());
|
||||
|
||||
int i;
|
||||
|
Loading…
x
Reference in New Issue
Block a user