mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 11:58:10 +02:00
remove the unused avatarIndex variable
This commit is contained in:
parent
7b8d377eb4
commit
be0bf37109
1 changed files with 1 additions and 5 deletions
|
@ -68,7 +68,6 @@ int main(int argc, const char* argv[])
|
||||||
*broadcastPacket = PACKET_HEADER_BULK_AVATAR_DATA;
|
*broadcastPacket = PACKET_HEADER_BULK_AVATAR_DATA;
|
||||||
|
|
||||||
unsigned char* currentBufferPosition = NULL;
|
unsigned char* currentBufferPosition = NULL;
|
||||||
int agentIndex = 0;
|
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
if (agentList->getAgentSocket().receive(agentAddress, packetData, &receivedBytes)) {
|
if (agentList->getAgentSocket().receive(agentAddress, packetData, &receivedBytes)) {
|
||||||
|
@ -81,9 +80,8 @@ int main(int argc, const char* argv[])
|
||||||
|
|
||||||
// this is positional data from an agent
|
// this is positional data from an agent
|
||||||
agentList->updateAgentWithData(agentAddress, packetData, receivedBytes);
|
agentList->updateAgentWithData(agentAddress, packetData, receivedBytes);
|
||||||
|
|
||||||
currentBufferPosition = broadcastPacket + 1;
|
currentBufferPosition = broadcastPacket + 1;
|
||||||
agentIndex = 0;
|
|
||||||
|
|
||||||
// send back a packet with other active agent data to this agent
|
// send back a packet with other active agent data to this agent
|
||||||
for (AgentList::iterator agent = agentList->begin(); agent != agentList->end(); agent++) {
|
for (AgentList::iterator agent = agentList->begin(); agent != agentList->end(); agent++) {
|
||||||
|
@ -91,8 +89,6 @@ int main(int argc, const char* argv[])
|
||||||
&& !socketMatch(agentAddress, agent->getActiveSocket())) {
|
&& !socketMatch(agentAddress, agent->getActiveSocket())) {
|
||||||
currentBufferPosition = addAgentToBroadcastPacket(currentBufferPosition, &*agent);
|
currentBufferPosition = addAgentToBroadcastPacket(currentBufferPosition, &*agent);
|
||||||
}
|
}
|
||||||
|
|
||||||
agentIndex++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
agentList->getAgentSocket().send(agentAddress,
|
agentList->getAgentSocket().send(agentAddress,
|
||||||
|
|
Loading…
Reference in a new issue