mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-23 17:14:52 +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++) {
|
for (quint32 i = 0; i < highPriorityMessageCount; i++) {
|
||||||
QVariant data;
|
QVariant data;
|
||||||
_inputStream >> data;
|
_inputStream >> data;
|
||||||
if (i >= _receivedHighPriorityMessages) {
|
if ((int)i >= _receivedHighPriorityMessages) {
|
||||||
handleHighPriorityMessage(data);
|
handleHighPriorityMessage(data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue