mirror of
https://github.com/overte-org/overte.git
synced 2025-08-18 08:36:51 +02:00
Merge branch 'avatar-interaction' of ssh://github.com/AndrewMeadows/hifi into avatar-interaction
This commit is contained in:
commit
728f3c7b78
2 changed files with 4 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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -29,4 +29,7 @@ include(${MACRO_DIR}/LinkHifiLibrary.cmake)
|
|||
link_hifi_library(metavoxels ${TARGET_NAME} ${ROOT_DIR})
|
||||
link_hifi_library(shared ${TARGET_NAME} ${ROOT_DIR})
|
||||
|
||||
IF (WIN32)
|
||||
target_link_libraries(${TARGET_NAME} Winmm Ws2_32)
|
||||
ENDIF(WIN32)
|
||||
|
||||
|
|
Loading…
Reference in a new issue