mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 12:04:18 +02:00
Merge pull request #1967 from ey6es/metavoxels
This should fix the remaining signed/unsigned warning on Windows.
This commit is contained in:
commit
c16e539bcc
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