mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-14 17:39:30 +02:00
the first bird index is 1, not 0
This commit is contained in:
parent
8f7379839d
commit
0873be94d4
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ int main(int argc, const char* argv[]) {
|
|||
unsigned char assignmentPacket[numHeaderBytes + sizeof(char)];
|
||||
populateTypeAndVersion(assignmentPacket, PACKET_TYPE_SEND_ASSIGNMENT);
|
||||
|
||||
int birdIndex = 0;
|
||||
int birdIndex = 1;
|
||||
|
||||
while (true) {
|
||||
if (serverSocket.receive((sockaddr*) &senderSocket, &senderData, &receivedBytes)) {
|
||||
|
|
Loading…
Reference in a new issue