mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 13:27:53 +02:00
This should fix the remaining signed/unsigned warning on Windows.
This commit is contained in:
parent
dabf3e34d6
commit
b9a5b13f0a
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ void DatagramSequencer::receivedDatagram(const QByteArray& datagram) {
|
|||
for (quint32 i = 0; i < highPriorityMessageCount; i++) {
|
||||
QVariant data;
|
||||
_inputStream >> data;
|
||||
if (i >= _receivedHighPriorityMessages) {
|
||||
if ((int)i >= _receivedHighPriorityMessages) {
|
||||
handleHighPriorityMessage(data);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue